Skip to content

Commit

Permalink
Bump version to v0.13.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
futursolo committed Oct 6, 2023
1 parent 0a4a583 commit 1eb7f62
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@

### v0.13.0

### Breaking Changes

- Increase MSRV to 1.66.0.
- Update syn to v2.
- Yew version is bumped to v0.21.

### Other Changes

- Update syn to v2.

### v0.12.1

### Other Changes

- Implemented a workaround that mitigates the linker error from Rust compiler (<https://github.com/rust-lang/rust/issues/111888>).

## v0.12.0
Expand Down
2 changes: 1 addition & 1 deletion packages/stylist-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stylist-core"
version = "0.12.1"
version = "0.13.0"
license = "MIT"
repository = "https://github.com/futursolo/stylist-rs"
authors = [
Expand Down
6 changes: 3 additions & 3 deletions packages/stylist-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stylist-macros"
version = "0.12.1"
version = "0.13.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/futursolo/stylist-rs"
Expand Down Expand Up @@ -30,13 +30,13 @@ itertools = "0.11.0"
log = "0.4.17"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
stylist-core = { path = "../stylist-core", version = "0.12", features = [
stylist-core = { path = "../stylist-core", version = "0.13", features = [
"parser",
"__proc_macro_workaround",
] }

[target.'cfg(target_arch = "wasm32")'.dependencies]
stylist-core = { path = "../stylist-core", version = "0.12", features = [
stylist-core = { path = "../stylist-core", version = "0.13", features = [
"parser",
] }

Expand Down
6 changes: 3 additions & 3 deletions packages/stylist/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stylist"
version = "0.12.1"
version = "0.13.0"
license = "MIT"
repository = "https://github.com/futursolo/stylist-rs"
authors = [
Expand All @@ -20,8 +20,8 @@ rust-version = "1.64.0"
crate-type = ["cdylib", "rlib"]

[dependencies]
stylist-core = { path = "../stylist-core", version = "0.12" }
stylist-macros = { path = "../stylist-macros", version = "0.12", optional = true }
stylist-core = { path = "../stylist-core", version = "0.13" }
stylist-macros = { path = "../stylist-macros", version = "0.13", optional = true }

once_cell = "1.16.0"
wasm-bindgen = "0.2.83"
Expand Down

0 comments on commit 1eb7f62

Please sign in to comment.