Skip to content

Commit

Permalink
v0.9.0-beta.3 (#683)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukechu10 authored Sep 9, 2024
1 parent 846bc3b commit cded1c0
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ members = [
]

[workspace.package]
version = "0.9.0-beta.2"
version = "0.9.0-beta.3"

[profile.bench]
debug = true
2 changes: 1 addition & 1 deletion docs/next/advanced/routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ To add routing to your Sycamore app, install the
[`sycamore-router`](https://crates.io/crates/sycamore-router) crate from crates.io.

```toml
sycamore-router = "0.9.0-beta.2"
sycamore-router = "0.9.0-beta.3"
```

### Compatibility with `sycamore`
Expand Down
4 changes: 2 additions & 2 deletions packages/sycamore-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ version.workspace = true
[dependencies]
hashbrown = "0.14.1"
paste = "1.0.14"
sycamore-futures = { path = "../sycamore-futures", version = "0.9.0-beta.2", optional = true }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.2" }
sycamore-futures = { path = "../sycamore-futures", version = "0.9.0-beta.3", optional = true }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.3" }

[dev-dependencies]
sycamore = { path = "../sycamore" }
Expand Down
4 changes: 2 additions & 2 deletions packages/sycamore-futures/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ version.workspace = true
[dependencies]
futures = "0.3.25"
pin-project = "1.1.3"
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.2" }
sycamore-macro = { path = "../sycamore-macro", version = "0.9.0-beta.2" }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.3" }
sycamore-macro = { path = "../sycamore-macro", version = "0.9.0-beta.3" }

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4.33"
Expand Down
4 changes: 2 additions & 2 deletions packages/sycamore-router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
sycamore = { path = "../sycamore", version = "0.9.0-beta.2" }
sycamore-router-macro = { path = "../sycamore-router-macro", version = "0.9.0-beta.2" }
sycamore = { path = "../sycamore", version = "0.9.0-beta.3" }
sycamore-router-macro = { path = "../sycamore-router-macro", version = "0.9.0-beta.3" }
wasm-bindgen = "0.2.83"

[dependencies.web-sys]
Expand Down
10 changes: 5 additions & 5 deletions packages/sycamore-web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sycamore-web"
version = "0.9.0-beta.2"
version = "0.9.0-beta.3"
edition = "2021"

[dependencies]
Expand All @@ -9,10 +9,10 @@ js-sys = "0.3.67"
paste = "1.0.14"
once_cell = "1.19.0"
smallvec = { version = "1.13.2", features = ["union", "const_generics"] }
sycamore-core = { path = "../sycamore-core", version = "0.9.0-beta.2" }
sycamore-futures = { path = "../sycamore-futures", version = "0.9.0-beta.2", optional = true }
sycamore-macro = { path = "../sycamore-macro", version = "0.9.0-beta.2" }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.2" }
sycamore-core = { path = "../sycamore-core", version = "0.9.0-beta.3" }
sycamore-futures = { path = "../sycamore-futures", version = "0.9.0-beta.3", optional = true }
sycamore-macro = { path = "../sycamore-macro", version = "0.9.0-beta.3" }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.3" }
wasm-bindgen = "0.2.92"
web-sys = { version = "0.3.69", features = [
"Comment",
Expand Down
10 changes: 5 additions & 5 deletions packages/sycamore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ futures = { version = "0.3.25", optional = true }
hashbrown = "0.14.1"
indexmap = { version = "2.0.2", features = ["std"] }
paste = "1.0.9"
sycamore-core = { path = "../sycamore-core", version = "0.9.0-beta.2" }
sycamore-futures = { path = "../sycamore-futures", version = "0.9.0-beta.2", optional = true }
sycamore-macro = { path = "../sycamore-macro", version = "0.9.0-beta.2" }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.2" }
sycamore-web = { path = "../sycamore-web", version = "0.9.0-beta.2", optional = true }
sycamore-core = { path = "../sycamore-core", version = "0.9.0-beta.3" }
sycamore-futures = { path = "../sycamore-futures", version = "0.9.0-beta.3", optional = true }
sycamore-macro = { path = "../sycamore-macro", version = "0.9.0-beta.3" }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.3" }
sycamore-web = { path = "../sycamore-web", version = "0.9.0-beta.3", optional = true }
wasm-bindgen = { version = "0.2.83", optional = true }
wasm-bindgen-futures = { version = "0.4.33", optional = true }
web-sys = { version = "0.3.60", optional = true }
Expand Down
1 change: 1 addition & 0 deletions website/src/versions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ enum VersionedDocsLink {
const VERSIONS: &[(&str, VersionedDocsLink)] = &[
("Next", VersionedDocsLink::Next),
// v0.9.x
("v0.9.0-beta.3", VersionedDocsLink::None),
("v0.9.0-beta.2", VersionedDocsLink::None),
("v0.9.0-beta.1", VersionedDocsLink::None),
// v0.8.x
Expand Down

0 comments on commit cded1c0

Please sign in to comment.