diff --git a/CHANGELOG.md b/CHANGELOG.md index fa14686..3f8e966 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. +## [0.1.18] - 2024-10-17 + +### Bug Fixes + +- Ci.sh + +### Documentation + +- Add deps to tooling + +### Features + +- Chacha20-poly1305 +- Use Encryption trait and impl aes256_gcm and cha_cha20_poly1305 + ## [0.1.17] - 2024-10-12 ### Features diff --git a/Cargo.lock b/Cargo.lock index d08a606..9d2674a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -682,7 +682,7 @@ dependencies = [ [[package]] name = "i6" -version = "0.1.17" +version = "0.1.18" dependencies = [ "clap", "i6-http", @@ -693,7 +693,7 @@ dependencies = [ [[package]] name = "i6-http" -version = "0.1.17" +version = "0.1.18" dependencies = [ "rcgen", "tokio", @@ -703,7 +703,7 @@ dependencies = [ [[package]] name = "i6-pack" -version = "0.1.17" +version = "0.1.18" dependencies = [ "aes-gcm", "argon2", @@ -721,7 +721,7 @@ dependencies = [ [[package]] name = "i6-shell" -version = "0.1.17" +version = "0.1.18" dependencies = [ "chrono", "lazy_static", @@ -733,7 +733,7 @@ dependencies = [ [[package]] name = "i6-timer" -version = "0.1.17" +version = "0.1.18" [[package]] name = "iana-time-zone" diff --git a/i6-http/Cargo.toml b/i6-http/Cargo.toml index cc4d99a..809abcf 100644 --- a/i6-http/Cargo.toml +++ b/i6-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "i6-http" -version = "0.1.17" # prepare_release.sh +version = "0.1.18" # prepare_release.sh edition = "2021" license = "AGPL-3.0" authors = ["kruserr"] diff --git a/i6-pack/Cargo.toml b/i6-pack/Cargo.toml index 26fde9c..9f6a187 100644 --- a/i6-pack/Cargo.toml +++ b/i6-pack/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "i6-pack" -version = "0.1.17" # prepare_release.sh +version = "0.1.18" # prepare_release.sh edition = "2021" license = "AGPL-3.0" authors = ["kruserr"] diff --git a/i6-shell/Cargo.toml b/i6-shell/Cargo.toml index 1befc57..c8b1273 100644 --- a/i6-shell/Cargo.toml +++ b/i6-shell/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "i6-shell" -version = "0.1.17" # prepare_release.sh +version = "0.1.18" # prepare_release.sh edition = "2021" license = "AGPL-3.0" authors = ["kruserr"] diff --git a/i6-timer/Cargo.toml b/i6-timer/Cargo.toml index 3c827d1..5426128 100644 --- a/i6-timer/Cargo.toml +++ b/i6-timer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "i6-timer" -version = "0.1.17" # prepare_release.sh +version = "0.1.18" # prepare_release.sh edition = "2021" license = "AGPL-3.0" authors = ["kruserr"] diff --git a/i6/Cargo.toml b/i6/Cargo.toml index a8ba7ef..cd62fad 100644 --- a/i6/Cargo.toml +++ b/i6/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "i6" -version = "0.1.17" # prepare_release.sh +version = "0.1.18" # prepare_release.sh edition = "2021" default-run = "i6" license = "AGPL-3.0"