Skip to content

Commit

Permalink
v0.9.0-beta.2 (#634)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukechu10 authored Oct 6, 2023
1 parent 8a1169e commit 9c7bd44
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 32 deletions.
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,8 @@ members = [
"packages/tools/bench-diff",
]

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

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

### 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.1"
sycamore = "0.9.0-beta.2"
```

> **Note**: Sycamore is currently being developed at a rapid pace. To have access to the latest
Expand Down
6 changes: 3 additions & 3 deletions packages/sycamore-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ keywords = ["wasm", "gui", "reactive"]
license = "MIT"
readme = "../../README.md"
repository = "https://github.com/sycamore-rs/sycamore"
version = "0.9.0-beta.1"
version.workspace = true

[dependencies]
hashbrown = "0.14.1"
sycamore-futures = { path = "../sycamore-futures", version = "0.9.0-beta.1", optional = true }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.1" }
sycamore-futures = { path = "../sycamore-futures", version = "0.9.0-beta.2", optional = true }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.2" }

[dev-dependencies]
sycamore = { path = "../sycamore", features = ["ssr"] }
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 @@ -8,12 +8,12 @@ keywords = ["wasm", "gui", "reactive"]
license = "MIT"
readme = "../../README.md"
repository = "https://github.com/sycamore-rs/sycamore"
version = "0.9.0-beta.1"
version.workspace = true

[dependencies]
futures = "0.3.25"
pin-project = "1.1.3"
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.1" }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.2" }

[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 @@ -8,7 +8,7 @@ keywords = ["wasm", "gui", "reactive"]
license = "MIT"
readme = "../../README.md"
repository = "https://github.com/sycamore-rs/sycamore"
version = "0.9.0-beta.1"
version.workspace = true

[lib]
proc-macro = true
Expand Down
2 changes: 1 addition & 1 deletion packages/sycamore-reactive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["wasm", "gui", "reactive"]
license = "MIT"
readme = "../../README.md"
repository = "https://github.com/sycamore-rs/sycamore"
version = "0.9.0-beta.1"
version.workspace = true

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

Expand Down
2 changes: 1 addition & 1 deletion packages/sycamore-router-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT"
name = "sycamore-router-macro"
readme = "../../README.md"
repository = "https://github.com/sycamore-rs/sycamore"
version = "0.9.0-beta.1"
version.workspace = true

[lib]
proc-macro = true
Expand Down
26 changes: 13 additions & 13 deletions packages/sycamore-router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,27 @@ license = "MIT"
name = "sycamore-router"
readme = "../../README.md"
repository = "https://github.com/sycamore-rs/sycamore"
version = "0.9.0-beta.1"
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.1" }
sycamore-router-macro = { path = "../sycamore-router-macro", version = "0.9.0-beta.1" }
sycamore = { path = "../sycamore", version = "0.9.0-beta.2" }
sycamore-router-macro = { path = "../sycamore-router-macro", version = "0.9.0-beta.2" }
wasm-bindgen = "0.2.83"

[dependencies.web-sys]
features = [
"Event",
"EventTarget",
"History",
"HtmlAnchorElement",
"HtmlBaseElement",
"KeyboardEvent",
"Location",
"PopStateEvent",
"Url",
"Window",
"Event",
"EventTarget",
"History",
"HtmlAnchorElement",
"HtmlBaseElement",
"KeyboardEvent",
"Location",
"PopStateEvent",
"Url",
"Window",
]
version = "0.3.60"

Expand Down
6 changes: 3 additions & 3 deletions packages/sycamore-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ keywords = ["wasm", "gui", "reactive", "web"]
license = "MIT"
readme = "../../README.md"
repository = "https://github.com/sycamore-rs/sycamore"
version = "0.9.0-beta.1"
version.workspace = true

[dependencies]
hashbrown = "0.14.1"
html-escape = "0.2.12"
indexmap = "2.0.2"
js-sys = "0.3.60"
once_cell = "1.16.0"
sycamore-core = { path = "../sycamore-core", version = "0.9.0-beta.1" }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.1" }
sycamore-core = { path = "../sycamore-core", version = "0.9.0-beta.2" }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.2" }
wasm-bindgen = "0.2.83"
web-sys = { version = "0.3.60", features = [
"console",
Expand Down
12 changes: 6 additions & 6 deletions packages/sycamore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["wasm", "gui", "reactive"]
license = "MIT"
readme = "../../README.md"
repository = "https://github.com/sycamore-rs/sycamore"
version = "0.9.0-beta.1"
version.workspace = true

[dependencies]
futures = { version = "0.3.25", optional = true }
Expand All @@ -18,11 +18,11 @@ indexmap = { version = "2.0.2", features = ["std"] }
js-sys = { version = "0.3.60", optional = true }
once_cell = { version = "1.16.0", optional = true }
paste = "1.0.9"
sycamore-core = { path = "../sycamore-core", version = "0.9.0-beta.1" }
sycamore-futures = { path = "../sycamore-futures", version = "0.9.0-beta.1", optional = true }
sycamore-macro = { path = "../sycamore-macro", version = "0.9.0-beta.1" }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.1" }
sycamore-web = { path = "../sycamore-web", version = "0.9.0-beta.1", optional = true }
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 }
wasm-bindgen = { version = "0.2.83", optional = true }
wasm-bindgen-futures = { version = "0.4.33", 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.2", VersionedDocsLink::None),
("v0.9.0-beta.1", VersionedDocsLink::None),
// v0.8.x
("v0.8.2", VersionedDocsLink::Some("v0.8")),
Expand Down

0 comments on commit 9c7bd44

Please sign in to comment.