Skip to content

Commit

Permalink
chore(release): Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andoriyu committed Dec 18, 2022
1 parent 4c65217 commit 92aea34
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Changelog

All notable changes to this project will be documented in this file.

## [0.2.0] - 2022-12-18

### Features

- [**breaking**] Add canceling job support ([#9](https://github.com/ZeroAssumptions/aide-de-camp/issues/9))
- [**breaking**] Add support for job priority ([#10](https://github.com/ZeroAssumptions/aide-de-camp/issues/10))
- Add support for graceful shutdown ([#16](https://github.com/ZeroAssumptions/aide-de-camp/issues/16))

### Testing

- Complete rename of JobHandler

### Ci

- Setup github actions ([#1](https://github.com/ZeroAssumptions/aide-de-camp/issues/1))

<!-- generated by git-cliff -->
3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,3 @@ members = [
"aide-de-camp-sqlite-bench",
"aide-de-camp",
]

[package.metadata.release]
pre-release-hook = ["git-cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"]
4 changes: 2 additions & 2 deletions aide-de-camp-sqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aide-de-camp-sqlite"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand All @@ -13,7 +13,7 @@ authors = ["Andrey Snow <andoriyu@gmail.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
aide-de-camp = { path = "../aide-de-camp", version = "0.1.1", features = ["runner"] }
aide-de-camp = { path = "../aide-de-camp", version = "0.2.0", features = ["runner"] }
sqlx = {version = "0.6.2", default-features = false , features = ["sqlite", "macros", "chrono", "offline", "migrate"]}
bincode = "2.0.0-rc.1"
tracing = "0.1.30"
Expand Down
5 changes: 4 additions & 1 deletion aide-de-camp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aide-de-camp"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down Expand Up @@ -33,3 +33,6 @@ tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
[features]
default = ["runner"]
runner = ["tokio/rt", "rand"]

[package.metadata.release]
pre-release-hook = ["git-cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"]

0 comments on commit 92aea34

Please sign in to comment.