Skip to content

Commit

Permalink
chore(release): 🔖 0.3.0-beta.5
Browse files Browse the repository at this point in the history
  • Loading branch information
arctic-hen7 committed Oct 2, 2021
1 parent 6d2b7e6 commit d059426
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [0.3.0-beta.5](https://github.com/arctic-hen7/perseus/compare/v0.3.0-beta.4...v0.3.0-beta.5) (2021-10-02)


### Bug Fixes

* 🚑 fixed page encodings ([6d2b7e6](https://github.com/arctic-hen7/perseus/commit/6d2b7e6641d4e59c6c6db2b42af494dbc667e21e))

## [0.3.0-beta.4](https://github.com/arctic-hen7/perseus/compare/v0.3.0-beta.3...v0.3.0-beta.4) (2021-10-02)


Expand Down
2 changes: 1 addition & 1 deletion docs/0.3.x/src/updating.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Migrating from v0.2.x

> Perseus v0.3.0 is still in beta, and you'll need to explicitly specify the latest version (0.3.0-beta.4) in your `Cargo.toml` and when you install the CLI by using the `--version` flag.
> Perseus v0.3.0 is still in beta, and you'll need to explicitly specify the latest version (0.3.0-beta.5) in your `Cargo.toml` and when you install the CLI by using the `--version` flag.
Perseus v0.3.0 added significant architectural changes to Perseus under the hood, and also made it easier to use for you! Additionally, this update provides inbuilt deployment functionality for moving Perseus to production (though that's not recommended yet)! If you're currently running v0.2.x, here's how to upgrade!

Expand Down
2 changes: 1 addition & 1 deletion examples/basic/.perseus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "perseus-cli-builder"
version = "0.3.0-beta.4"
version = "0.3.0-beta.5"
edition = "2018"
default-run = "perseus-builder"

Expand Down
2 changes: 1 addition & 1 deletion examples/basic/.perseus/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "perseus-cli-server"
version = "0.3.0-beta.4"
version = "0.3.0-beta.5"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "perseus-example-basic"
version = "0.3.0-beta.4"
version = "0.3.0-beta.5"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion examples/tiny/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "perseus-example-tiny"
version = "0.3.0-beta.4"
version = "0.3.0-beta.5"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
4 changes: 2 additions & 2 deletions packages/perseus-actix-web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "perseus-actix-web"
version = "0.3.0-beta.4"
version = "0.3.0-beta.5"
edition = "2018"
description = "An integration that makes the Perseus frontend framework easy to use with Actix Web."
authors = ["arctic_hen7 <arctic_hen7@pm.me>"]
Expand All @@ -14,7 +14,7 @@ categories = ["wasm", "web-programming::http-server", "development-tools", "asyn
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
perseus = { path = "../perseus", version = "0.3.0-beta.4" }
perseus = { path = "../perseus", version = "0.3.0-beta.5" }
actix-web = "3.3"
actix-files = "0.5"
urlencoding = "2.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/perseus-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "perseus-cli"
version = "0.3.0-beta.4"
version = "0.3.0-beta.5"
edition = "2018"
description = "The CLI for the Perseus frontend framework."
authors = ["arctic_hen7 <arctic_hen7@pm.me>"]
Expand Down
2 changes: 1 addition & 1 deletion packages/perseus-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "perseus-macro"
version = "0.3.0-beta.4"
version = "0.3.0-beta.5"
edition = "2018"
autotests = false
description = "The Perseus macros."
Expand Down
4 changes: 2 additions & 2 deletions packages/perseus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "perseus"
version = "0.3.0-beta.4"
version = "0.3.0-beta.5"
edition = "2018"
description = "A lightning-fast frontend web dev platform with full support for SSR and SSG."
authors = ["arctic_hen7 <arctic_hen7@pm.me>"]
Expand All @@ -16,7 +16,7 @@ categories = ["wasm", "web-programming", "development-tools", "asynchronous", "g
[dependencies]
sycamore = { version = "0.6", features = ["ssr"] }
sycamore-router = "0.6"
perseus-macro = { path = "../perseus-macro", version = "0.3.0-beta.4" }
perseus-macro = { path = "../perseus-macro", version = "0.3.0-beta.5" }
web-sys = { version = "0.3", features = ["Headers", "Navigator", "NodeList", "Request", "RequestInit", "RequestMode", "Response", "ReadableStream", "Window"] }
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4"
Expand Down

0 comments on commit d059426

Please sign in to comment.