Skip to content

Commit

Permalink
Prepare 0.9.0-beta.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lukechu10 committed Sep 16, 2024
1 parent 4db8780 commit a42f1a7
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 19 deletions.
13 changes: 12 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,18 @@ members = [
]

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

[workspace.dependencies]
sycamore = { path = "packages/sycamore", version = "0.9.0-beta.4" }
sycamore-core = { path = "packages/sycamore-core", version = "0.9.0-beta.4" }
sycamore-futures = { path = "packages/sycamore-futures", version = "0.9.0-beta.4" }
sycamore-macro = { path = "packages/sycamore-macro", version = "0.9.0-beta.4" }
sycamore-reactive = { path = "packages/sycamore-reactive", version = "0.9.0-beta.4" }
sycamore-router = { path = "packages/sycamore-router", version = "0.9.0-beta.4" }
sycamore-router-macro = { path = "packages/sycamore-router-macro", version = "0.9.0-beta.4" }
sycamore-view-parser = { path = "packages/sycamore-view-parser", version = "0.9.0-beta.4" }
sycamore-web = { path = "packages/sycamore-web", version = "0.9.0-beta.4" }

[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.3"
sycamore-router = "0.9.0-beta.4"
```

### Compatibility with `sycamore`
Expand Down
2 changes: 1 addition & 1 deletion docs/next/getting_started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ You now need to add Sycamore to your new project's dependencies. Add the followi
`Cargo.toml` file in your project folder:

```toml
sycamore = "0.9.0-beta.3"
sycamore = "0.9.0-beta.4"
```

> **Note**: Sycamore is currently being developed at a rapid pace. To have access to the latest
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.3", optional = true }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.3" }
sycamore-futures = { workspace = true, optional = true }
sycamore-reactive = { workspace = true }

[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.3" }
sycamore-macro = { path = "../sycamore-macro", version = "0.9.0-beta.3" }
sycamore-reactive = { workspace = true }
sycamore-macro = { workspace = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4.33"
Expand Down
2 changes: 1 addition & 1 deletion packages/sycamore-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ proc-macro2 = "1.0.47"
quote = "1.0.21"
rand = "0.8.5"
syn = { version = "2.0.10", features = ["extra-traits", "full"] }
sycamore-view-parser = { path = "../sycamore-view-parser", version = "0.9.0-beta.3" }
sycamore-view-parser = { workspace = true }

[dev-dependencies]
sycamore = { path = "../sycamore", features = ["suspense"] }
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.3" }
sycamore-router-macro = { path = "../sycamore-router-macro", version = "0.9.0-beta.3" }
sycamore = { workspace = true }
sycamore-router-macro = { workspace = true }
wasm-bindgen = "0.2.83"

[dependencies.web-sys]
Expand Down
8 changes: 4 additions & 4 deletions packages/sycamore-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,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.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-core = { workspace = true }
sycamore-futures = { workspace = true, optional = true }
sycamore-macro = { workspace = true }
sycamore-reactive = { workspace = true }
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.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 }
sycamore-core = { workspace = true }
sycamore-futures = { workspace = true, optional = true }
sycamore-macro = { workspace = true }
sycamore-reactive = { workspace = true }
sycamore-web = { workspace = true, 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.4", VersionedDocsLink::None),
("v0.9.0-beta.3", VersionedDocsLink::None),
("v0.9.0-beta.2", VersionedDocsLink::None),
("v0.9.0-beta.1", VersionedDocsLink::None),
Expand Down

0 comments on commit a42f1a7

Please sign in to comment.