Skip to content

Commit

Permalink
bump for release (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpiemontese authored Nov 25, 2024
1 parent ce4fdf8 commit a2d12b0
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
msrv = "1.74.0"
msrv = "1.81.0"
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: |
rustup override set 1.74.0
rustup override set 1.81.0
rustup component add rustfmt
rustup component add clippy
rustup component add rust-docs
Expand All @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup override set 1.74.0
- run: rustup override set 1.81.0
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@cargo-make
- name: Add hosts entries
Expand Down
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [0.18.0] - 2024-11-22

- Bump MSRV to `1.81.0`.
- Expose option for setting ID function (#202)
- Add ID format to `PgStore`
- Allow `PgStoreBuilder` to set ID format
- Support UUID version 7 directly

---

## [0.17.1] - 2024-08-20

### Updated
Expand Down Expand Up @@ -351,7 +361,10 @@ Refer to: [#107], [#108] and [#109]



[Unreleased]: https://github.com/primait/event_sourcing.rs/compare/0.17.1...HEAD


[Unreleased]: https://github.com/primait/event_sourcing.rs/compare/0.18.0...HEAD
[0.18.0]: https://github.com/primait/event_sourcing.rs/compare/0.17.1...0.18.0
[0.17.1]: https://github.com/primait/event_sourcing.rs/compare/0.17.0...0.17.1
[0.17.0]: https://github.com/primait/event_sourcing.rs/compare/0.16.0...0.17.0
[0.16.0]: https://github.com/primait/event_sourcing.rs/compare/0.15.0...0.16.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ license = "MIT OR Apache-2.0"
name = "esrs"
readme = "README.md"
repository = "https://github.com/primait/event_sourcing.rs"
rust-version = "1.74.0"
version = "0.17.1"
rust-version = "1.81.0"
version = "0.18.0"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 2 additions & 0 deletions examples/common/basic/view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ use crate::common::util::random_letters;

#[derive(sqlx::FromRow, Debug)]
pub struct BasicViewRow {
#[allow(unused)]
pub id: Uuid,
#[allow(unused)]
pub content: String,
}

Expand Down
1 change: 1 addition & 0 deletions src/store/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ pub trait UnlockOnDrop: Send + Sync + 'static {}
/// Lock guard preventing concurrent access to a resource.
///
/// The lock is released when this guard is dropped.
#[allow(dead_code)]
pub struct EventStoreLockGuard(Box<dyn UnlockOnDrop>);

impl EventStoreLockGuard {
Expand Down

0 comments on commit a2d12b0

Please sign in to comment.