Skip to content

Commit

Permalink
chore(release): bump to 0.15 (#451)
Browse files Browse the repository at this point in the history
Release 0.14.3 as 0.15, as it bumped the MSRV, see #449.
  • Loading branch information
jeertmans authored Dec 7, 2024
1 parent 04ff39e commit ec8b6d5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/maciejhirsz/logos"
rust-version = "1.74.0"
version = "0.14.3"
version = "0.15.0"

[package]
name = "logos"
Expand Down Expand Up @@ -67,7 +67,7 @@ bench = {lto = true}
release = {lto = true}

[dependencies]
logos-derive = {version = "0.14.3", path = "./logos-derive", optional = true}
logos-derive = {version = "0.15.0", path = "./logos-derive", optional = true}

[dev-dependencies]
ariadne = {version = "0.4", features = ["auto-color"]}
Expand Down
2 changes: 1 addition & 1 deletion book/src/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

```toml
[dependencies]
logos = "0.14.3"
logos = "0.15.0"
```

Then, you can automatically derive the [`Logos`](https://docs.rs/logos/latest/logos/trait.Logos.html) trait on your `enum` using the `Logos` derive macro:
Expand Down
2 changes: 1 addition & 1 deletion logos-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
anyhow = "1.0.57"
clap = {version = "3.1.18", features = ["derive"]}
fs-err = "2.7.0"
logos-codegen = {version = "0.14.3", path = "../logos-codegen"}
logos-codegen = {version = "0.15.0", path = "../logos-codegen"}
proc-macro2 = "1.0.39"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion logos-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[dependencies]
logos-codegen = {version = "0.14.3", path = "../logos-codegen"}
logos-codegen = {version = "0.15.0", path = "../logos-codegen"}

[features]
# Enables debug messages
Expand Down

0 comments on commit ec8b6d5

Please sign in to comment.