File tree 6 files changed +22
-6
lines changed
6 files changed +22
-6
lines changed Original file line number Diff line number Diff line change 1
- msrv = " 1.74 .0"
1
+ msrv = " 1.81 .0"
Original file line number Diff line number Diff line change 13
13
steps :
14
14
- uses : actions/checkout@v3
15
15
- run : |
16
- rustup override set 1.74 .0
16
+ rustup override set 1.81 .0
17
17
rustup component add rustfmt
18
18
rustup component add clippy
19
19
rustup component add rust-docs
30
30
runs-on : ubuntu-latest
31
31
steps :
32
32
- uses : actions/checkout@v3
33
- - run : rustup override set 1.74 .0
33
+ - run : rustup override set 1.81 .0
34
34
- uses : Swatinem/rust-cache@v2
35
35
- uses : taiki-e/install-action@cargo-make
36
36
- name : Add hosts entries
Original file line number Diff line number Diff line change @@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
---
11
11
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
+
12
22
## [ 0.17.1] - 2024-08-20
13
23
14
24
### Updated
@@ -351,7 +361,10 @@ Refer to: [#107], [#108] and [#109]
351
361
352
362
353
363
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
355
368
[ 0.17.1 ] : https://github.com/primait/event_sourcing.rs/compare/0.17.0...0.17.1
356
369
[ 0.17.0 ] : https://github.com/primait/event_sourcing.rs/compare/0.16.0...0.17.0
357
370
[ 0.16.0 ] : https://github.com/primait/event_sourcing.rs/compare/0.15.0...0.16.0
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ license = "MIT OR Apache-2.0"
8
8
name = " esrs"
9
9
readme = " README.md"
10
10
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 "
13
13
14
14
[package .metadata .docs .rs ]
15
15
all-features = true
Original file line number Diff line number Diff line change @@ -5,7 +5,9 @@ use crate::common::util::random_letters;
5
5
6
6
#[ derive( sqlx:: FromRow , Debug ) ]
7
7
pub struct BasicViewRow {
8
+ #[ allow( unused) ]
8
9
pub id : Uuid ,
10
+ #[ allow( unused) ]
9
11
pub content : String ,
10
12
}
11
13
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ pub trait UnlockOnDrop: Send + Sync + 'static {}
19
19
/// Lock guard preventing concurrent access to a resource.
20
20
///
21
21
/// The lock is released when this guard is dropped.
22
+ #[ allow( dead_code) ]
22
23
pub struct EventStoreLockGuard ( Box < dyn UnlockOnDrop > ) ;
23
24
24
25
impl EventStoreLockGuard {
You can’t perform that action at this time.
0 commit comments