Skip to content

Commit 7e52387

Browse files
committed
chore(release): 🔖 0.3.0-beta.18
1 parent a66b3f1 commit 7e52387

File tree

12 files changed

+39
-13
lines changed

12 files changed

+39
-13
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,32 @@
22

33
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.
44

5+
## [0.3.0-beta.18](https://github.com/arctic-hen7/perseus/compare/v0.3.0-beta.17...v0.3.0-beta.18) (2021-11-28)
6+
7+
8+
### Features
9+
10+
* **website:** made docs sidebar nicer ([107b9d3](https://github.com/arctic-hen7/perseus/commit/107b9d3264fb30602c672d359eb187d9b4c58f08))
11+
* added `perseus snoop` and docs for common pitfalls ([3c1a919](https://github.com/arctic-hen7/perseus/commit/3c1a919f074a99423f26f54a3761e3468b13d6d0))
12+
* **i18n:** added fallback non-wasm locale redirection ([589ac1b](https://github.com/arctic-hen7/perseus/commit/589ac1b85f4a035dec36aa19c92a0d2157cea71e))
13+
* **website:** added plugins registry ([de1c217](https://github.com/arctic-hen7/perseus/commit/de1c217f1073206bee5e493ca9571325735d0e71))
14+
15+
16+
### Bug Fixes
17+
18+
* **cli:** 🐛 printed `stdout` and well as `stderr` if a stage fails ([ea1f1f1](https://github.com/arctic-hen7/perseus/commit/ea1f1f1f1ca9e45927eacfbbff6e8cd844f40221)), closes [#74](https://github.com/arctic-hen7/perseus/issues/74)
19+
* **exporting:** 🐛 fixed [#73](https://github.com/arctic-hen7/perseus/issues/73) ([a3f879c](https://github.com/arctic-hen7/perseus/commit/a3f879c20eb2bcfc4592cb41ff0e9052a98d4f84))
20+
* **i18n:** fixed fallback locale redirection with relative paths ([5095388](https://github.com/arctic-hen7/perseus/commit/5095388a275332af5069ef6e4fc94a9ad51b37aa))
21+
22+
23+
### Documentation Changes
24+
25+
* **website:** added more comparisons ([d4dabaf](https://github.com/arctic-hen7/perseus/commit/d4dabaf1a7f4e8396fdecee1dfc03ab9fe99cee5))
26+
* made markdown styles more readable and fixed tldr link ([a74b285](https://github.com/arctic-hen7/perseus/commit/a74b2858155706cef6ed83e118062beb40b9f35d))
27+
* **book:** fixed dependency versions in docs ([2171e9c](https://github.com/arctic-hen7/perseus/commit/2171e9c196671a5aa10bffda1413eb9da566a1cf)), closes [#79](https://github.com/arctic-hen7/perseus/issues/79)
28+
* **readme:** updated contact links ([5f74b07](https://github.com/arctic-hen7/perseus/commit/5f74b07ec0c53851e904e5782e37266b33083f92)), closes [#77](https://github.com/arctic-hen7/perseus/issues/77)
29+
* ✏️ fixed typos in contributing guidelines ([#76](https://github.com/arctic-hen7/perseus/issues/76)) ([5dfedc1](https://github.com/arctic-hen7/perseus/commit/5dfedc16864718837be1a273fe0b28b1d1e24e46))
30+
531
## [0.3.0-beta.17](https://github.com/arctic-hen7/perseus/compare/v0.3.0-beta.16...v0.3.0-beta.17) (2021-11-07)
632

733

docs/0.3.x/en-US/hello-world.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Finally, we tell Perseus what to do if something in your app fails, like if the
6363

6464
Now, tell Rust that you want to be compiling for WebAssembly by adding that platform as a target. You can do this by running `rustup target add wasm32-unknown-unknown`.
6565

66-
After that's finished, you can install the Perseus CLI with `cargo install perseus-cli --version 0.3.0-beta.17` (you'll need `wasm-pack` to let Perseus build your app, use `cargo install wasm-pack` to install it) to make your life way easier, and deploy your app to <http://localhost:8080> by running `perseus serve` inside the root of your project! This will take a while the first time, because it's got to fetch all your dependencies and build your app.
66+
After that's finished, you can install the Perseus CLI with `cargo install perseus-cli --version 0.3.0-beta.18` (you'll need `wasm-pack` to let Perseus build your app, use `cargo install wasm-pack` to install it) to make your life way easier, and deploy your app to <http://localhost:8080> by running `perseus serve` inside the root of your project! This will take a while the first time, because it's got to fetch all your dependencies and build your app.
6767

6868
<details>
6969
<summary>Why do I need a CLI?</summary>

docs/0.3.x/en-US/updating.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Migrating from v0.2.x
22

3-
> Perseus v0.3.0 is still in beta, and you'll need to explicitly specify the latest version (0.3.0-beta.17) in your `Cargo.toml` and when you install the CLI by using the `--version` flag.
3+
> Perseus v0.3.0 is still in beta, and you'll need to explicitly specify the latest version (0.3.0-beta.18) in your `Cargo.toml` and when you install the CLI by using the `--version` flag.
44
55
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!
66

docs/next/en-US/updating.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Migrating from v0.2.x
22

3-
> Perseus v0.3.0 is still in beta, and you'll need to explicitly specify the latest version (0.3.0-beta.17) in your `Cargo.toml` and when you install the CLI by using the `--version` flag.
3+
> Perseus v0.3.0 is still in beta, and you'll need to explicitly specify the latest version (0.3.0-beta.18) in your `Cargo.toml` and when you install the CLI by using the `--version` flag.
44
55
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!
66

examples/basic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "perseus-example-basic"
3-
version = "0.3.0-beta.17"
3+
version = "0.3.0-beta.18"
44
edition = "2018"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

examples/basic/Cargo.toml.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
perseus = "0.3.0-beta.17"
9+
perseus = "0.3.0-beta.18"
1010
sycamore = "0.6"
1111
serde = { version = "1", features = ["derive"] }
1212
serde_json = "1"

examples/tiny/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "perseus-example-tiny"
3-
version = "0.3.0-beta.17"
3+
version = "0.3.0-beta.18"
44
edition = "2018"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

examples/tiny/Cargo.toml.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2018"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
perseus = "0.3.0-beta.17"
9+
perseus = "0.3.0-beta.18"
1010
sycamore = "0.6"

packages/perseus-actix-web/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "perseus-actix-web"
3-
version = "0.3.0-beta.17"
3+
version = "0.3.0-beta.18"
44
edition = "2018"
55
description = "An integration that makes the Perseus frontend framework easy to use with Actix Web."
66
authors = ["arctic_hen7 <[email protected]>"]
@@ -14,7 +14,7 @@ categories = ["wasm", "web-programming::http-server", "development-tools", "asyn
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
perseus = { path = "../perseus", version = "0.3.0-beta.17" }
17+
perseus = { path = "../perseus", version = "0.3.0-beta.18" }
1818
actix-web = "3.3"
1919
actix-files = "0.5"
2020
urlencoding = "2.1"

packages/perseus-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "perseus-cli"
3-
version = "0.3.0-beta.17"
3+
version = "0.3.0-beta.18"
44
edition = "2018"
55
description = "The CLI for the Perseus frontend framework."
66
authors = ["arctic_hen7 <[email protected]>"]

packages/perseus-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "perseus-macro"
3-
version = "0.3.0-beta.17"
3+
version = "0.3.0-beta.18"
44
edition = "2018"
55
autotests = false
66
description = "The Perseus macros."

packages/perseus/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "perseus"
3-
version = "0.3.0-beta.17"
3+
version = "0.3.0-beta.18"
44
edition = "2018"
55
description = "A lightning-fast frontend web dev platform with full support for SSR and SSG."
66
authors = ["arctic_hen7 <[email protected]>"]
@@ -16,7 +16,7 @@ categories = ["wasm", "web-programming", "development-tools", "asynchronous", "g
1616
[dependencies]
1717
sycamore = { version = "0.6", features = ["ssr"] }
1818
sycamore-router = "0.6"
19-
perseus-macro = { path = "../perseus-macro", version = "0.3.0-beta.17" }
19+
perseus-macro = { path = "../perseus-macro", version = "0.3.0-beta.18" }
2020
# TODO review feature flags here
2121
web-sys = { version = "0.3", features = ["Headers", "Navigator", "NodeList", "Request", "RequestInit", "RequestMode", "Response", "ReadableStream", "Window"] }
2222
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }

0 commit comments

Comments
 (0)