Skip to content

Commit

Permalink
chore(release): 🔖 0.3.4-rc.5
Browse files Browse the repository at this point in the history
  • Loading branch information
arctic-hen7 committed Apr 14, 2022
1 parent 0fa339c commit 27fa93f
Show file tree
Hide file tree
Showing 20 changed files with 28 additions and 26 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

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.4-rc.5](https://github.com/arctic-hen7/perseus/compare/v0.3.4-rc.4...v0.3.4-rc.5) (2022-04-14)

### [0.3.4-rc.4](https://github.com/arctic-hen7/perseus/compare/v0.3.4-rc.3...v0.3.4-rc.4) (2022-04-14)

### [0.3.4-rc.3](https://github.com/arctic-hen7/perseus/compare/v0.3.4-rc.2...v0.3.4-rc.3) (2022-04-13)
Expand Down
4 changes: 2 additions & 2 deletions docs/0.3.0-0.3.3/en-US/deploying/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apt update \
build-essential curl wget

# vars
ENV PERSEUS_VERSION=0.3.4-rc.4 \
ENV PERSEUS_VERSION=0.3.4-rc.5 \
PERSEUS_SIZE_OPT_VERSION=0.1.7 \
ESBUILD_VERSION=0.14.7 \
BINARYEN_VERSION=104
Expand Down Expand Up @@ -113,7 +113,7 @@ RUN apt update \
build-essential curl wget

# vars
ENV PERSEUS_VERSION=0.3.4-rc.4 \
ENV PERSEUS_VERSION=0.3.4-rc.5 \
WEE_ALLOC_VERSION=0.4 \
ESBUILD_VERSION=0.14.7 \
BINARYEN_VERSION=104
Expand Down
2 changes: 1 addition & 1 deletion docs/0.3.0-0.3.3/en-US/second-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This section will cover building a more realistic app than the _Hello World!_ section, with proper structuring and multiple templates.

If learning by reading isn't really your thing, or you'd like a reference, you can see all the code in [this repository](https://github.com/arctic-hen7/perseus/tree/v0.3.4-rc.4/examples/basic)!
If learning by reading isn't really your thing, or you'd like a reference, you can see all the code in [this repository](https://github.com/arctic-hen7/perseus/tree/v0.3.4-rc.5/examples/basic)!

## Setup

Expand Down
4 changes: 2 additions & 2 deletions docs/0.3.4/en-US/reference/deploying/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apt update \
build-essential curl wget

# vars
ENV PERSEUS_VERSION=0.3.4-rc.4 \
ENV PERSEUS_VERSION=0.3.4-rc.5 \
PERSEUS_SIZE_OPT_VERSION=0.1.7 \
ESBUILD_VERSION=0.14.7 \
BINARYEN_VERSION=104
Expand Down Expand Up @@ -113,7 +113,7 @@ RUN apt update \
build-essential curl wget

# vars
ENV PERSEUS_VERSION=0.3.4-rc.4 \
ENV PERSEUS_VERSION=0.3.4-rc.5 \
WEE_ALLOC_VERSION=0.4 \
ESBUILD_VERSION=0.14.7 \
BINARYEN_VERSION=104
Expand Down
4 changes: 2 additions & 2 deletions docs/next/en-US/reference/deploying/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apt update \
build-essential curl wget

# vars
ENV PERSEUS_VERSION=0.3.4-rc.4 \
ENV PERSEUS_VERSION=0.3.4-rc.5 \
PERSEUS_SIZE_OPT_VERSION=0.1.7 \
ESBUILD_VERSION=0.14.7 \
BINARYEN_VERSION=104
Expand Down Expand Up @@ -113,7 +113,7 @@ RUN apt update \
build-essential curl wget

# vars
ENV PERSEUS_VERSION=0.3.4-rc.4 \
ENV PERSEUS_VERSION=0.3.4-rc.5 \
WEE_ALLOC_VERSION=0.4 \
ESBUILD_VERSION=0.14.7 \
BINARYEN_VERSION=104
Expand Down
2 changes: 1 addition & 1 deletion examples/comprehensive/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.4-rc.4"
version = "0.3.4-rc.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/comprehensive/tiny/Cargo.toml.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
perseus = { version = "0.3.4-rc.4", features = [ "hydrate" ] }
perseus = { version = "0.3.4-rc.5", features = [ "hydrate" ] }
sycamore = "0.7"
2 changes: 1 addition & 1 deletion examples/core/basic/.perseus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "perseus-engine"
version = "0.3.4-rc.4"
version = "0.3.4-rc.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/core/basic/.perseus/builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "perseus-engine-builder"
version = "0.3.4-rc.4"
version = "0.3.4-rc.5"
edition = "2018"
default-run = "perseus-builder"

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

[package]
name = "perseus-engine-server"
version = "0.3.4-rc.4"
version = "0.3.4-rc.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/core/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.4-rc.4"
version = "0.3.4-rc.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/core/basic/Cargo.toml.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
perseus = { version = "0.3.4-rc.4", features = [ "hydrate" ] }
perseus = { version = "0.3.4-rc.5", features = [ "hydrate" ] }
sycamore = "0.7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2 changes: 1 addition & 1 deletion examples/core/plugins/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "perseus-example-plugins"
version = "0.3.4-rc.4"
version = "0.3.4-rc.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/demos/auth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "perseus-example-auth"
version = "0.3.4-rc.4"
version = "0.3.4-rc.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/demos/fetching/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "perseus-example-fetching"
version = "0.3.4-rc.4"
version = "0.3.4-rc.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.4-rc.4"
version = "0.3.4-rc.5"
edition = "2018"
description = "An integration that makes the Perseus frontend framework easy to use with Actix Web."
authors = ["arctic_hen7 <[email protected]>"]
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.4-rc.4" }
perseus = { path = "../perseus", version = "0.3.4-rc.5" }
actix-web = "=4.0.0-rc.3"
actix-http = "=3.0.0-rc.2" # Without this, Actix can introduce breaking changes in a dependency tree
# actix-router = "=0.5.0-rc.3"
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.4-rc.4"
version = "0.3.4-rc.5"
edition = "2018"
description = "The CLI for the Perseus frontend framework."
authors = ["arctic_hen7 <[email protected]>"]
Expand Down
4 changes: 2 additions & 2 deletions 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.4-rc.4"
version = "0.3.4-rc.5"
edition = "2018"
autotests = false
description = "The Perseus macros."
Expand Down Expand Up @@ -31,7 +31,7 @@ sycamore-reactive = "^0.7.1"
trybuild = { version = "1.0", features = ["diff"] }
sycamore = "^0.7.1"
serde = { version = "1", features = [ "derive" ] }
perseus = { path = "../perseus", version = "0.3.4-rc.4" }
perseus = { path = "../perseus", version = "0.3.4-rc.5" }

[features]
# Enables live reloading support (which makes the macros listen for live reload events and adjust appropriately). Do NOT enable this here without also enabling it on `perseus`!
Expand Down
4 changes: 2 additions & 2 deletions packages/perseus-warp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "perseus-warp"
version = "0.3.4-rc.4"
version = "0.3.4-rc.5"
edition = "2018"
description = "An integration that makes the Perseus framework easy to use with Warp."
authors = ["arctic_hen7 <[email protected]>"]
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.4-rc.4" }
perseus = { path = "../perseus", version = "0.3.4-rc.5" }
tokio = { version = "1", features = [ "rt-multi-thread" ] }
warp = { package = "warp-fix-171", version = "0.3" } # Temporary until Warp #171 is resolved
urlencoding = "2.1"
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.4-rc.4"
version = "0.3.4-rc.5"
edition = "2018"
description = "A lightning-fast frontend web dev platform with full support for SSR and SSG."
authors = ["arctic_hen7 <[email protected]>"]
Expand All @@ -16,7 +16,7 @@ categories = ["wasm", "web-programming", "development-tools", "asynchronous", "g
[dependencies]
sycamore = { version = "^0.7.1", features = ["ssr"] }
sycamore-router = "^0.7.1"
perseus-macro = { path = "../perseus-macro", version = "0.3.4-rc.4" }
perseus-macro = { path = "../perseus-macro", version = "0.3.4-rc.5" }
# TODO review feature flags here
web-sys = { version = "0.3", features = [ "Headers", "Navigator", "NodeList", "Request", "RequestInit", "RequestMode", "Response", "ReadableStream", "Window" ] }
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
Expand Down

0 comments on commit 27fa93f

Please sign in to comment.