Skip to content

Commit

Permalink
chore: release v0.4.0 (#256)
Browse files Browse the repository at this point in the history
## 🤖 New release
* `roadster`: 0.3.5 -> 0.4.0

<details><summary><i><b>Changelog</b></i></summary><p>

<blockquote>

##
[0.4.0](roadster-v0.3.5...roadster-v0.4.0)
- 2024-07-01

### Added
- [**breaking**] Implement health check API using `HealthCheck` trait
([#255](#255))
- [**breaking**] Switch to Axum's `FromRef` for custom state
([#250](#250))

### Other
- [**breaking**] Remove deprecated items in preparation of 0.4 release
([#253](#253))
- Add example for integrating with Leptos
([#252](#252))
- Use small number of sidekiq workers for `full` example in dev/test
([#251](#251))
</blockquote>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/MarcoIeni/release-plz/).

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Jul 1, 2024
1 parent 8225647 commit bdd9458
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/roadster-rs/roadster/compare/roadster-v0.3.5...roadster-v0.4.0) - 2024-07-01

### Added
- [**breaking**] Implement health check API using `HealthCheck` trait ([#255](https://github.com/roadster-rs/roadster/pull/255))
- [**breaking**] Switch to Axum's `FromRef` for custom state ([#250](https://github.com/roadster-rs/roadster/pull/250))

### Other
- [**breaking**] Remove deprecated items in preparation of 0.4 release ([#253](https://github.com/roadster-rs/roadster/pull/253))
- Add example for integrating with Leptos ([#252](https://github.com/roadster-rs/roadster/pull/252))
- Use small number of sidekiq workers for `full` example in dev/test ([#251](https://github.com/roadster-rs/roadster/pull/251))

## [0.3.5](https://github.com/roadster-rs/roadster/compare/roadster-v0.3.4...roadster-v0.3.5) - 2024-06-24

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roadster"
version = "0.3.5"
version = "0.4.0"
edition = "2021"
publish = true
description = "A \"Batteries Included\" web framework for rust designed to get you moving fast."
Expand Down
2 changes: 1 addition & 1 deletion examples/full/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ default = ["grpc"]
grpc = ["roadster/grpc", "dep:tonic", "dep:tonic-reflection", "dep:prost"]

[dependencies]
roadster = { version = "0.3", path = "../.." }
roadster = { version = "0.4", path = "../.." }
tokio = { workspace = true }
tokio-util = { workspace = true }
anyhow = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion examples/leptos-ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ssr = [
]

[dependencies]
roadster = { version = "0.3", path = "../..", optional = true, default-features = false, features = ["http", "db-sql", "cli"] }
roadster = { version = "0.4", path = "../..", optional = true, default-features = false, features = ["http", "db-sql", "cli"] }
tokio = { workspace = true, optional = true }
tokio-util = { workspace = true, optional = true }
anyhow = { workspace = true }
Expand Down

0 comments on commit bdd9458

Please sign in to comment.