Skip to content

Commit 48e029a

Browse files
committed
Bump version to 0.9.0
1 parent 8fc0fc9 commit 48e029a

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Run tests
2828
run: cargo test --verbose
2929
- name: Build docker image
30-
run: docker build -t reqlang-expr-repl:0.8.0 .
30+
run: docker build -t reqlang-expr-repl:0.9.0 .
3131
- name: Setup pages
3232
id: pages
3333
uses: actions/configure-pages@v5

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "reqlang-expr"
33
description = "A tiny (bytecode compiled, stack VM interpreted) expression language for reqlang's templating engine."
4-
version = "0.8.0"
4+
version = "0.9.0"
55
license = "MIT"
66
authors = ["Kylee Tilley <kyleetilley@gmail.com>"]
77
edition = "2024"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A small (tiny) WIP expression language for [reqlang](https://github.com/testingr
88

99
```toml
1010
[dependencies]
11-
reqlang-expr = "0.8.0"
11+
reqlang-expr = "0.9.0"
1212
```
1313

1414
```sh
@@ -278,9 +278,9 @@ cargo run -q --example repl
278278
Or using Docker:
279279

280280
```sh
281-
docker build -t reqlang-expr-repl:0.8.0 .
281+
docker build -t reqlang-expr-repl:0.9.0 .
282282

283-
docker run -it --rm --read-only reqlang-expr-repl:0.8.0
283+
docker run -it --rm --read-only reqlang-expr-repl:0.9.0
284284
```
285285

286286
#### Repl Mode

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
docker_image := "reqlang-expr:0.8.0"
1+
docker_image := "reqlang-expr:0.9.0"
22

33
# List commands
44
default:

0 commit comments

Comments
 (0)