Skip to content

Commit

Permalink
Releases v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tpt committed Dec 26, 2024
1 parent e439602 commit d50bd02
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@v2
with: { tool: cargo-semver-checks }
# TODO: enable after first release - run: cargo semver-checks check-release || true
- run: cargo semver-checks check-release

typos:
runs-on: ubuntu-latest
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [0.1.0] - 2024-12-26

### Added
- Error: `From` implementation from/to Tonic `Code` and `Status`.

### Changed
- Build: Removes the "grpc" feature and make it a build option named `with_grpc`.

## [0.0.3] - 2024-12-19

### Added
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ tower = "0.5.1"
tower-http = "0.6.2"
tracing = "0.1.35"
trait-variant = "0.1.2"
twurst-error = { path = "error", version = "0.0.1" }
twurst-error = { path = "error", version = "0.1.0" }
2 changes: 1 addition & 1 deletion build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "twurst-build"
description = "Build script to generate bindings for .proto files for Twirp"
repository = "https://github.com/helsing-ai/twurst"
documentation = "https://docs.rs/twurst-build"
version = "0.0.3"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Twirp client related code"
keywords = ["Twirp"]
repository = "https://github.com/helsing-ai/twurst"
documentation = "https://docs.rs/twurst-client"
version = "0.0.1"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion error/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "twurst-error"
description = "Twirp error struct"
repository = "https://github.com/helsing-ai/twurst"
documentation = "https://docs.rs/twurst-error"
version = "0.0.1"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Twirp server related code"
keywords = ["Twirp"]
repository = "https://github.com/helsing-ai/twurst"
documentation = "https://docs.rs/twurst-server"
version = "0.0.3"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down

0 comments on commit d50bd02

Please sign in to comment.