Skip to content

Commit fd4fd9c

Browse files
brsonclaude
andcommitted
Prepare rustmax 0.0.9 release
Bump all crate versions 0.0.8 -> 0.0.9, demoapp 0.1.1 -> 0.1.2. Update project template to reference 0.0.9. Add release notes post. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8e16d62 commit fd4fd9c

12 files changed

Lines changed: 59 additions & 19 deletions

File tree

Cargo.lock

Lines changed: 6 additions & 6 deletions
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
[workspace.package]
22
description = "A collection of useful crates."
33
edition = "2024"
4-
version = "0.0.8"
4+
version = "0.0.9"
55
license = "Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT OR CC0-1.0"
66
authors = ["Brian Anderson <andersrb@gmail.com>"]
77
repository = "https://github.com/brson/rustmax"

botdocs/tasks.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ Use prior posts as style reference.
1111

1212
Bump the version numbers of all rustmax crates,
1313
including the demoapp.
14+
Update the rustmax version in the project template
15+
(`template/Cargo.toml.liquid` and `crates/rustmax-cli/assets/template/Cargo.toml.liquid`).
1416
Run `just test` to verify.
1517
Run the demoapp test suite to verify.
1618
Add release notes to src/posts.

crates/rustmax-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ path = "src/main.rs"
1414

1515
[dependencies]
1616
rmx.path = "../rustmax"
17-
rmx.version = "0.0.8"
17+
rmx.version = "0.0.9"
1818
rmx.package = "rustmax"
1919
rmx.default-features = false
2020
rmx.features = [
2121
"rmx-profile-net",
2222
"rmx-feature-derive",
2323
]
2424
rustmax-doctest.path = "../rustmax-doctest"
25-
rustmax-doctest.version = "0.0.8"
25+
rustmax-doctest.version = "0.0.9"
2626
rustmax-rustdoc.path = "../rustmax-rustdoc"
27-
rustmax-rustdoc.version = "0.0.8"
27+
rustmax-rustdoc.version = "0.0.9"
2828
serde.version = "1"
2929
enum-iterator.version = "2.1.0"
3030
regex.version = "1"

crates/rustmax-cli/assets/template/Cargo.toml.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ default-members = [
1919

2020
[workspace.dependencies]
2121
rmx.package = "rustmax"
22-
rmx.version = "0.0.7"
22+
rmx.version = "0.0.9"
2323
rmx.features = [
2424
"rmx-profile-portable",
2525
]

crates/rustmax-doctest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "Doctest runner for rustmax crate examples"
99

1010
[dependencies]
1111
rmx.path = "../rustmax"
12-
rmx.version = "0.0.8"
12+
rmx.version = "0.0.9"
1313
rmx.package = "rustmax"
1414
rmx.features = ["rmx-profile-max"]
1515
pulldown-cmark.version = "0.12"

crates/rustmax-rustdoc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ include = ["src/**/*", "assets/**/*", "Cargo.toml", "build.rs"]
1010

1111
[dependencies]
1212
rmx.path = "../rustmax"
13-
rmx.version = "0.0.8"
13+
rmx.version = "0.0.9"
1414
rmx.package = "rustmax"
1515
rmx.default-features = false
1616
rmx.features = [

crates/rustmax/doc-src/guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Add `rustmax` to your `Cargo.toml` with a profile enabled:
4949
```toml
5050
[dependencies]
5151
rmx.package = "rustmax"
52-
rmx.version = "0.0.8"
52+
rmx.version = "0.0.9"
5353
rmx.features = [
5454
"rmx-profile-portable",
5555
]
@@ -60,7 +60,7 @@ Or if using a workspace, define the dependency in your workspace `Cargo.toml`:
6060
```toml
6161
[workspace.dependencies]
6262
rmx.package = "rustmax"
63-
rmx.version = "0.0.8"
63+
rmx.version = "0.0.9"
6464
rmx.features = [
6565
"rmx-profile-portable",
6666
]

demoapp/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demoapp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anthology"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2024"
55
description = "A document publishing platform - rustmax demo app"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)