Skip to content

Commit

Permalink
Bump version to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasKalbertodt committed Apr 17, 2023
1 parent 9382ee8 commit 6b06817
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Expand Up @@ -6,6 +6,9 @@ All notable changes to this project will be documented in this file.
## [Unreleased]


## [0.2.1] - 2023-04-17
- Update dependencies (none of these are exposed in the API, so a minor version bump is sufficient).

## [0.2.0] - 2021-01-27
### Added
- Add Cargo-feature `debug-is-prod` which enables prod mode (embedding, hashes,
Expand All @@ -31,5 +34,6 @@ All notable changes to this project will be documented in this file.
- Everything


[Unreleased]: https://github.com/LukasKalbertodt/reinda/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/LukasKalbertodt/reinda/compare/v0.2.1...HEAD
[0.2.1]: https://github.com/LukasKalbertodt/reinda/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/LukasKalbertodt/reinda/compare/v0.1.0...v0.2.0
6 changes: 3 additions & 3 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "reinda"
version = "0.2.0"
version = "0.2.1"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2018"

Expand Down Expand Up @@ -29,8 +29,8 @@ ahash = "0.8.3"
base64 = { version = "0.21.0", optional = true }
bytes = "1"
flate2 = { version = "1", optional = true }
reinda-core = { version = "=0.0.2", path = "core" }
reinda-macros = { version = "=0.0.2", path = "macros" }
reinda-core = { version = "=0.0.3", path = "core" }
reinda-macros = { version = "=0.0.3", path = "macros" }
sha2 = { version = "0.10.6", optional = true }
thiserror = "1"
tokio = { version = "1", features = ["fs", "io-util"] }
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "reinda-core"
version = "0.0.2"
version = "0.0.3"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "reinda-macros"
version = "0.0.2"
version = "0.0.3"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2018"

Expand All @@ -25,7 +25,7 @@ bytes = "1"
flate2 = { version = "1", optional = true }
proc-macro2 = "1"
quote = "1"
reinda-core = { version = "=0.0.2", path = "../core" }
reinda-core = { version = "=0.0.3", path = "../core" }

[dependencies.syn]
version = "1"
Expand Down

0 comments on commit 6b06817

Please sign in to comment.