Skip to content

Commit 637ec54

Browse files
committed
Bump version to 1.1.1
1 parent 8fa22be commit 637ec54

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Add this to your `Cargo.toml`:
3333

3434
```toml
3535
[dependencies]
36-
expr-solver-lib = "1.1.0"
36+
expr-solver-lib = "1.1.1"
3737
```
3838

3939
### As a binary
@@ -42,7 +42,7 @@ Add this to your `Cargo.toml`:
4242

4343
```toml
4444
[dependencies]
45-
expr-solver-bin = "1.1.0"
45+
expr-solver-bin = "1.1.1"
4646
```
4747

4848
### Quick Evaluation

bin/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "expr-solver-bin"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
edition = "2024"
55
authors = ["Albert Varaksin <albeva@me.com>"]
66
description = "Binary using the expr-solver-lib to solve math expressions from command line"
@@ -15,6 +15,6 @@ name = "expr-solver"
1515
path = "src/main.rs"
1616

1717
[dependencies]
18-
expr-solver-lib = { version = "1.1.0", path = "../lib" }
18+
expr-solver-lib = { version = "1.1.1", path = "../lib" }
1919
clap = { version = "4.0", features = ["derive"] }
2020
rust_decimal = { workspace = true }

lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "expr-solver-lib"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
edition = "2024"
55
authors = ["Albert Varaksin <albeva@me.com>"]
66
description = "A simple math expression solver library"

0 commit comments

Comments
 (0)