Skip to content

Commit 9d9b4c1

Browse files
authored
Merge pull request #106 from amirography/release-plz/2023-07-12T11-06-55Z
chore: release
2 parents 4619682 + 37f35a0 commit 9d9b4c1

File tree

7 files changed

+43
-9
lines changed

7 files changed

+43
-9
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/kyushu/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
517517

518518
## [Unreleased]
519519

520+
## [0.17.0](https://github.com/amirography/soapberry/compare/kyushu-v0.16.0...kyushu-v0.17.0) - 2023-07-15
521+
522+
### Added
523+
- add path information to error
524+
- new implementation of frost elfs
525+
- add flake
526+
527+
### Fixed
528+
- fix a logic mistake when doing a boolean comparison
529+
530+
### Other
531+
- update dependencies
532+
- fix a few linting problems
533+
- fix a few linting problems
534+
- separate responsibilities of elfs
535+
- simplified filedb
536+
520537
## [0.16.0](https://github.com/amirography/soapberry/compare/kyushu-v0.15.0...kyushu-v0.16.0) - 2023-07-09
521538

522539
### Added

crates/kyushu/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kyushu"
33
description = "kyushu is a local-first, event-based journaling application."
4-
version = "0.16.0"
4+
version = "0.17.0"
55
edition = "2021"
66
authors = ["Amir Alesheikh <amirhossein.alehseikh@gmail.com>"]
77

@@ -30,12 +30,12 @@ clap = { version = "4.3.11", features = ["derive", "cargo"] }
3030
color-eyre = "0.6.2"
3131
once_cell = "1.18.0"
3232
owo-colors = "3.5.0"
33-
redmaple = { version = "0.17.0", path = "../redmaple" }
33+
redmaple = { version = "0.18.0", path = "../redmaple" }
3434
serde = { version = "1.0.171", features = ["derive"] }
3535
serde_json = "1.0.102"
3636
thiserror = "1.0.43"
3737
time = { version = "0.3.23", features = ["serde", "formatting", "local-offset", "serde-human-readable"] }
38-
whirlybird = { version = "0.13.0", path = "../whirlybird", features = [
38+
whirlybird = { version = "0.13.1", path = "../whirlybird", features = [
3939
"journey",
4040
], default-features = false }
4141

crates/redmaple/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
127127

128128
## [Unreleased]
129129

130+
## [0.18.0](https://github.com/amirography/soapberry/compare/redmaple-v0.17.0...redmaple-v0.18.0) - 2023-07-15
131+
132+
### Added
133+
- new implementation of frost elfs
134+
- add flake
135+
136+
### Other
137+
- update dependencies
138+
- fix a few linting problems
139+
- separate responsibilities of elfs
140+
130141
## [0.17.0](https://github.com/amirography/soapberry/compare/redmaple-v0.16.1...redmaple-v0.17.0) - 2023-07-09
131142

132143
### Added

crates/redmaple/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redmaple"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
edition = "2021"
55
authors = ["Amir Alesheikh <amirhossein.alehseikh@gmail.com>"]
66
description = "RedMaple offers an oppinionated yet extremely flexible data modeling system based on events for backend applications"

crates/whirlybird/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
120120

121121
## [Unreleased]
122122

123+
## [0.13.1](https://github.com/amirography/soapberry/compare/whirlybird-v0.13.0...whirlybird-v0.13.1) - 2023-07-15
124+
125+
### Other
126+
- *(whirlybird)* adding tests for body
127+
- update dependencies
128+
123129
## [0.13.0](https://github.com/amirography/soapberry/compare/whirlybird-v0.12.2...whirlybird-v0.13.0) - 2023-07-09
124130

125131
### Added

crates/whirlybird/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "whirlybird"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
edition = "2021"
55
authors = ["Amir Alesheikh <amirhossein.alehseikh@gmail.com>"]
66
description = "whirlybird is a library of generic type implementations for RedMaple library, that offers workflows for different events compatible with common contents like todos, blogs and etc."
@@ -23,7 +23,7 @@ split_commits = true
2323
filter_unconventional = true
2424

2525
[dependencies]
26-
redmaple = { version = "0.17.0", path = "../redmaple"}
26+
redmaple = { version = "0.18.0", path = "../redmaple"}
2727
serde = { version = "1.0.171", features = ["derive"] }
2828
thiserror = {version="1.0.43"}
2929
time = { version = "0.3.23", features = ["serde"] }

0 commit comments

Comments
 (0)