Skip to content

Commit

Permalink
v0.9.0-beta.1 (#594)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukechu10 authored Mar 26, 2023
1 parent c8666c7 commit 3885a9e
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 24 deletions.
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.8"
sycamore-router = "0.9.0-beta.1"
```

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

> **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.8.2"
version = "0.9.0-beta.1"

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

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

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

[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.8.2"
version = "0.9.0-beta.1"

[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.8.1"
version = "0.9.0-beta.1"

[dependencies]
bumpalo = { version = "3.12.0", features = ["boxed"] }
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.8.0"
version = "0.9.0-beta.1"

[lib]
proc-macro = true
Expand Down
6 changes: 3 additions & 3 deletions packages/sycamore-router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ license = "MIT"
name = "sycamore-router"
readme = "../../README.md"
repository = "https://github.com/sycamore-rs/sycamore"
version = "0.8.0"
version = "0.9.0-beta.1"

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

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

[dependencies.web-sys]
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.8.2"
version = "0.9.0-beta.1"

[dependencies]
hashbrown = "0.13.1"
html-escape = "0.2.12"
indexmap = "1.9.2"
js-sys = "0.3.60"
once_cell = "1.16.0"
sycamore-core = { path = "../sycamore-core", version = "0.8.0" }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.8.0" }
sycamore-core = { path = "../sycamore-core", version = "0.9.0-beta.1" }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.9.0-beta.1" }
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.8.2"
version = "0.9.0-beta.1"

[dependencies]
futures = { version = "0.3.25", optional = true }
Expand All @@ -18,11 +18,11 @@ indexmap = { version = "1.9.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.8.0" }
sycamore-futures = { path = "../sycamore-futures", version = "0.8.0", optional = true }
sycamore-macro = { path = "../sycamore-macro", version = "0.8.0" }
sycamore-reactive = { path = "../sycamore-reactive", version = "0.8.0" }
sycamore-web = { path = "../sycamore-web", version = "0.8.0", optional = true }
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 }
wasm-bindgen = { version = "0.2.83", optional = true }
wasm-bindgen-futures = { version = "0.4.33", optional = true }

Expand Down
8 changes: 6 additions & 2 deletions website/src/versions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ enum VersionedDocsLink {

const VERSIONS: &[(&str, VersionedDocsLink)] = &[
("Next", VersionedDocsLink::Next),
// v0.8.0
("v0.8.0", VersionedDocsLink::Some("v0.8")),
// v0.9.x
("v0.9.0-beta.1", VersionedDocsLink::None),
// v0.8.x
("v0.8.2", VersionedDocsLink::Some("v0.8")),
("v0.8.1", VersionedDocsLink::None),
("v0.8.0", VersionedDocsLink::None),
("v0.8.0-beta.7", VersionedDocsLink::None),
("v0.8.0-beta.6", VersionedDocsLink::None),
("v0.8.0-beta.5", VersionedDocsLink::None),
Expand Down

1 comment on commit 3885a9e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.30.

Benchmark suite Current: 3885a9e Previous: c8666c7 Ratio
reactivity_signals 55635 ns/iter (± 9881) 39689 ns/iter (± 2186) 1.40
reactivity_context_deeply_nested 312 ns/iter (± 143) 188 ns/iter (± 21) 1.66

This comment was automatically generated by workflow using github-action-benchmark.

CC: @lukechu10

Please sign in to comment.