Skip to content

Commit

Permalink
Bump version to v0.13.0 (#145)
Browse files Browse the repository at this point in the history
* Bump version to v0.13.0.

* Increase version in README.
  • Loading branch information
futursolo committed Oct 6, 2023
1 parent 8ef4448 commit 74e0fd0
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
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 README.md
Expand Up @@ -14,7 +14,7 @@ This is a fork of [css-in-rust](https://github.com/lukidoescode/css-in-rust).
Add the following to your `Cargo.toml`:

```toml
stylist = "0.11"
stylist = "0.13"
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion packages/stylist-core/Cargo.toml
@@ -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
@@ -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
@@ -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.66.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 74e0fd0

Please sign in to comment.