Skip to content

Commit a2d12b0

Browse files
authored
bump for release (#204)
1 parent ce4fdf8 commit a2d12b0

File tree

6 files changed

+22
-6
lines changed

6 files changed

+22
-6
lines changed

.clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.74.0"
1+
msrv = "1.81.0"

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v3
1515
- run: |
16-
rustup override set 1.74.0
16+
rustup override set 1.81.0
1717
rustup component add rustfmt
1818
rustup component add clippy
1919
rustup component add rust-docs
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- uses: actions/checkout@v3
33-
- run: rustup override set 1.74.0
33+
- run: rustup override set 1.81.0
3434
- uses: Swatinem/rust-cache@v2
3535
- uses: taiki-e/install-action@cargo-make
3636
- name: Add hosts entries

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
---
1111

12+
## [0.18.0] - 2024-11-22
13+
14+
- Bump MSRV to `1.81.0`.
15+
- Expose option for setting ID function (#202)
16+
- Add ID format to `PgStore`
17+
- Allow `PgStoreBuilder` to set ID format
18+
- Support UUID version 7 directly
19+
20+
---
21+
1222
## [0.17.1] - 2024-08-20
1323

1424
### Updated
@@ -351,7 +361,10 @@ Refer to: [#107], [#108] and [#109]
351361

352362

353363

354-
[Unreleased]: https://github.com/primait/event_sourcing.rs/compare/0.17.1...HEAD
364+
365+
366+
[Unreleased]: https://github.com/primait/event_sourcing.rs/compare/0.18.0...HEAD
367+
[0.18.0]: https://github.com/primait/event_sourcing.rs/compare/0.17.1...0.18.0
355368
[0.17.1]: https://github.com/primait/event_sourcing.rs/compare/0.17.0...0.17.1
356369
[0.17.0]: https://github.com/primait/event_sourcing.rs/compare/0.16.0...0.17.0
357370
[0.16.0]: https://github.com/primait/event_sourcing.rs/compare/0.15.0...0.16.0

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ license = "MIT OR Apache-2.0"
88
name = "esrs"
99
readme = "README.md"
1010
repository = "https://github.com/primait/event_sourcing.rs"
11-
rust-version = "1.74.0"
12-
version = "0.17.1"
11+
rust-version = "1.81.0"
12+
version = "0.18.0"
1313

1414
[package.metadata.docs.rs]
1515
all-features = true

examples/common/basic/view.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ use crate::common::util::random_letters;
55

66
#[derive(sqlx::FromRow, Debug)]
77
pub struct BasicViewRow {
8+
#[allow(unused)]
89
pub id: Uuid,
10+
#[allow(unused)]
911
pub content: String,
1012
}
1113

src/store/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ pub trait UnlockOnDrop: Send + Sync + 'static {}
1919
/// Lock guard preventing concurrent access to a resource.
2020
///
2121
/// The lock is released when this guard is dropped.
22+
#[allow(dead_code)]
2223
pub struct EventStoreLockGuard(Box<dyn UnlockOnDrop>);
2324

2425
impl EventStoreLockGuard {

0 commit comments

Comments
 (0)