Skip to content

Commit 39e9fe8

Browse files
committed
Bump version to 0.1.9 and update changelog
Updated the workspace and package versions from 0.1.8 to 0.1.9 in Cargo.toml and Cargo.lock. Added a new 0.1.9 release section to the changelog in preparation for the new release.
1 parent 26b9499 commit 39e9fe8

File tree

5 files changed

+23
-21
lines changed

5 files changed

+23
-21
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.9] - 2026-01-14
11+
1012
### Added
1113

1214
#### Performance (big-performance branch)

Cargo.lock

Lines changed: 14 additions & 14 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
@@ -35,7 +35,7 @@ members = [
3535
]
3636

3737
[workspace.package]
38-
version = "0.1.8"
38+
version = "0.1.9"
3939
edition = "2021"
4040
authors = ["RustAPI Contributors"]
4141
license = "MIT OR Apache-2.0"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,14 +132,14 @@ cd benches
132132

133133
```toml
134134
[dependencies]
135-
rustapi-rs = "0.1.8"
135+
rustapi-rs = "0.1.9"
136136
```
137137

138138
Or with all features:
139139

140140
```toml
141141
[dependencies]
142-
rustapi-rs = { version = "0.1.8", features = ["full"] }
142+
rustapi-rs = { version = "0.1.9", features = ["full"] }
143143
```
144144

145145
```rust
@@ -196,7 +196,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
196196
### Optional Features
197197

198198
```toml
199-
rustapi-rs = { version = "0.1.8", features = ["jwt", "cors", "toon", "ws", "view"] }
199+
rustapi-rs = { version = "0.1.9", features = ["jwt", "cors", "toon", "ws", "view"] }
200200
```
201201

202202
| Feature | Description |

docs/GETTING_STARTED.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ Add RustAPI to your `Cargo.toml`:
2222

2323
```toml
2424
[dependencies]
25-
rustapi-rs = "0.1.8"
25+
rustapi-rs = "0.1.9"
2626
```
2727

2828
Or with specific features:
2929

3030
```toml
3131
[dependencies]
32-
rustapi-rs = { version = "0.1.8", features = ["jwt", "cors", "toon", "ws", "view"] }
32+
rustapi-rs = { version = "0.1.9", features = ["jwt", "cors", "toon", "ws", "view"] }
3333
```
3434

3535
### Available Features
@@ -697,7 +697,7 @@ struct AnyBody { ... }
697697
Check that the `swagger-ui` feature is enabled (it's on by default):
698698

699699
```toml
700-
rustapi-rs = { version = "0.1.8", features = ["swagger-ui"] }
700+
rustapi-rs = { version = "0.1.9", features = ["swagger-ui"] }
701701
```
702702

703703
### CLI Commands Not Working

0 commit comments

Comments
 (0)