Skip to content

Commit

Permalink
chore(release): 🔖 0.4.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arctic-hen7 committed May 30, 2022
1 parent b14b4e0 commit 854bd4c
Show file tree
Hide file tree
Showing 19 changed files with 37 additions and 23 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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.4.0-beta.1](https://github.com/arctic-hen7/perseus/compare/v0.3.5...v0.4.0-beta.1) (2022-05-30)


### Features

* upgrade to Sycamore v0.8.0 ([#142](https://github.com/arctic-hen7/perseus/issues/142)) ([b14b4e0](https://github.com/arctic-hen7/perseus/commit/b14b4e0afc8c0b73a3f6ba64bec1bb0460849ea9)), closes [#137](https://github.com/arctic-hen7/perseus/issues/137) [#137](https://github.com/arctic-hen7/perseus/issues/137)


### Documentation Changes

* added notes about hydration bugs ([2aef79c](https://github.com/arctic-hen7/perseus/commit/2aef79c402174e92b931de678648a95c1db6c678))
* fix typo in `basic` example readme ([#141](https://github.com/arctic-hen7/perseus/issues/141)) ([35ff172](https://github.com/arctic-hen7/perseus/commit/35ff172b44b42e5dcd68a3023c1450d903fa0804))
* updated docs for index view with example ([eccf137](https://github.com/arctic-hen7/perseus/commit/eccf137032fbe8e6507be9e9317edc16e7576a4f))

### [0.3.5](https://github.com/arctic-hen7/perseus/compare/v0.3.4...v0.3.5) (2022-04-20)


Expand Down
4 changes: 2 additions & 2 deletions docs/0.4.x/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.5 \
ENV PERSEUS_VERSION=0.4.0-beta.1 \
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.5 \
ENV PERSEUS_VERSION=0.4.0-beta.1 \
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.5 \
ENV PERSEUS_VERSION=0.4.0-beta.1 \
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.5 \
ENV PERSEUS_VERSION=0.4.0-beta.1 \
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.5"
version = "0.4.0-beta.1"
edition = "2021"

# 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 = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
perseus = { version = "0.3.5", features = [ "hydrate" ] }
perseus = { version = "0.4.0-beta.1", 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.5"
version = "0.4.0-beta.1"
edition = "2021"

# 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.5"
version = "0.4.0-beta.1"
edition = "2021"
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.5"
version = "0.4.0-beta.1"
edition = "2021"

# 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.5"
version = "0.4.0-beta.1"
edition = "2021"

# 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 = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
perseus = { version = "0.3.5", features = [ "hydrate" ] }
perseus = { version = "0.4.0-beta.1", features = [ "hydrate" ] }
sycamore = "0.7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2 changes: 1 addition & 1 deletion examples/core/index_view/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "perseus-example-index-view"
version = "0.3.5"
version = "0.4.0-beta.1"
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/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.5"
version = "0.4.0-beta.1"
edition = "2021"

# 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.5"
version = "0.4.0-beta.1"
edition = "2021"

# 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.5"
version = "0.4.0-beta.1"
edition = "2021"

# 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.5"
version = "0.4.0-beta.1"
edition = "2021"
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.5" }
perseus = { path = "../perseus", version = "0.4.0-beta.1" }
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.5"
version = "0.4.0-beta.1"
edition = "2021"
description = "The CLI for the Perseus frontend framework."
authors = ["arctic_hen7 <[email protected]>"]
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.5"
version = "0.4.0-beta.1"
edition = "2021"
autotests = false
description = "The Perseus macros."
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.5"
version = "0.4.0-beta.1"
edition = "2021"
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.5" }
perseus = { path = "../perseus", version = "0.4.0-beta.1" }
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.5"
version = "0.4.0-beta.1"
edition = "2021"
description = "A lightning-fast frontend web dev platform with full support for SSR and SSG."
authors = ["arctic_hen7 <[email protected]>"]
Expand All @@ -17,7 +17,7 @@ categories = ["wasm", "web-programming", "development-tools", "asynchronous", "g
sycamore = { version = "=0.8.0-beta.6", features = [ "ssr" ] }
sycamore-router = "=0.8.0-beta.6"
sycamore-futures = "=0.8.0-beta.6"
perseus-macro = { path = "../perseus-macro", version = "0.3.5" }
perseus-macro = { path = "../perseus-macro", version = "0.4.0-beta.1" }
# 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 854bd4c

Please sign in to comment.