From 638ce4646d50ff94556ac426a09fedc171a14185 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 18:00:44 +0000 Subject: [PATCH] chore: release Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- standards/cap/Cargo.toml | 2 +- standards/cms/Cargo.toml | 4 ++-- standards/kerberos/Cargo.toml | 4 ++-- standards/ldap/Cargo.toml | 2 +- standards/mib/Cargo.toml | 4 ++-- standards/ocsp/Cargo.toml | 4 ++-- standards/pkix/Cargo.toml | 2 +- standards/smi/CHANGELOG.md | 5 +++++ standards/smi/Cargo.toml | 2 +- standards/smime/Cargo.toml | 6 +++--- standards/snmp/Cargo.toml | 4 ++-- 13 files changed, 28 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e679d04..4d69dad5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.4](https://github.com/XAMPPRocky/rasn/compare/rasn-v0.12.3...rasn-v0.12.4) - 2023-12-04 + +### Other +- Remove deprecated chrono functions, redundant constant lifetimes ([#212](https://github.com/XAMPPRocky/rasn/pull/212)) + ## [0.12.3](https://github.com/XAMPPRocky/rasn/compare/rasn-v0.12.2...rasn-v0.12.3) - 2023-11-25 ### Other diff --git a/Cargo.toml b/Cargo.toml index a26466a7..c4d69a7b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ exclude = ["fuzzing"] [workspace.package] edition = "2021" license = "MIT/Apache-2.0" -version = "0.12.3" +version = "0.12.4" repository = "https://github.com/XAMPPRocky/rasn.git" [workspace.dependencies] diff --git a/standards/cap/Cargo.toml b/standards/cap/Cargo.toml index d2628fab..fd574f20 100644 --- a/standards/cap/Cargo.toml +++ b/standards/cap/Cargo.toml @@ -9,4 +9,4 @@ repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rasn = { path = "../..", version = "0.12.3" } +rasn = { path = "../..", version = "0.12.4" } diff --git a/standards/cms/Cargo.toml b/standards/cms/Cargo.toml index f5818bec..a2ab9ab5 100644 --- a/standards/cms/Cargo.toml +++ b/standards/cms/Cargo.toml @@ -7,9 +7,9 @@ license.workspace = true repository.workspace = true [dependencies.rasn] -version = "0.12.3" +version = "0.12.4" path = "../.." [dependencies.rasn-pkix] -version = "0.12.3" +version = "0.12.4" path = "../pkix" diff --git a/standards/kerberos/Cargo.toml b/standards/kerberos/Cargo.toml index 0d5fffed..11478dde 100644 --- a/standards/kerberos/Cargo.toml +++ b/standards/kerberos/Cargo.toml @@ -14,8 +14,8 @@ features = ["otp"] otp = ["rasn-pkix"] [dependencies] -rasn = { path = "../..", version = "0.12.3" } -rasn-pkix = { path = "../pkix", version = "0.12.3", optional = true } +rasn = { path = "../..", version = "0.12.4" } +rasn-pkix = { path = "../pkix", version = "0.12.4", optional = true } [dev-dependencies] pretty_assertions.workspace = true diff --git a/standards/ldap/Cargo.toml b/standards/ldap/Cargo.toml index 1d6f4988..2214a7af 100644 --- a/standards/ldap/Cargo.toml +++ b/standards/ldap/Cargo.toml @@ -9,4 +9,4 @@ repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rasn = { path = "../..", version = "0.12.3" } +rasn = { path = "../..", version = "0.12.4" } diff --git a/standards/mib/Cargo.toml b/standards/mib/Cargo.toml index 85a50d30..67e195e2 100644 --- a/standards/mib/Cargo.toml +++ b/standards/mib/Cargo.toml @@ -9,5 +9,5 @@ repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -smi = { path = "../smi", package = "rasn-smi", version = "0.12.3" } -rasn = { path = "../..", version = "0.12.3" } +smi = { path = "../smi", package = "rasn-smi", version = "0.12.4" } +rasn = { path = "../..", version = "0.12.4" } diff --git a/standards/ocsp/Cargo.toml b/standards/ocsp/Cargo.toml index cb287507..e6be5d23 100644 --- a/standards/ocsp/Cargo.toml +++ b/standards/ocsp/Cargo.toml @@ -9,5 +9,5 @@ repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rasn = { path = "../..", version = "0.12.3" } -rasn-pkix = { path = "../pkix", version = "0.12.3" } +rasn = { path = "../..", version = "0.12.4" } +rasn-pkix = { path = "../pkix", version = "0.12.4" } diff --git a/standards/pkix/Cargo.toml b/standards/pkix/Cargo.toml index a59c4588..607a117d 100644 --- a/standards/pkix/Cargo.toml +++ b/standards/pkix/Cargo.toml @@ -9,7 +9,7 @@ repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rasn = { path = "../..", version = "0.12.3" } +rasn = { path = "../..", version = "0.12.4" } [dev-dependencies] base64 = "0.13" diff --git a/standards/smi/CHANGELOG.md b/standards/smi/CHANGELOG.md index 53a0fd31..c6f29ae2 100644 --- a/standards/smi/CHANGELOG.md +++ b/standards/smi/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.4](https://github.com/XAMPPRocky/rasn/compare/rasn-smi-v0.12.3...rasn-smi-v0.12.4) - 2023-12-04 + +### Other +- Remove deprecated chrono functions, redundant constant lifetimes ([#212](https://github.com/XAMPPRocky/rasn/pull/212)) + ## [0.11.0](https://github.com/XAMPPRocky/rasn/compare/rasn-smi-v0.10.6...rasn-smi-v0.11.0) - 2023-10-28 ### Other diff --git a/standards/smi/Cargo.toml b/standards/smi/Cargo.toml index 835b7e81..86c10d29 100644 --- a/standards/smi/Cargo.toml +++ b/standards/smi/Cargo.toml @@ -9,5 +9,5 @@ repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rasn = { path = "../..", version = "0.12.3" } +rasn = { path = "../..", version = "0.12.4" } chrono.workspace = true diff --git a/standards/smime/Cargo.toml b/standards/smime/Cargo.toml index 66d6489e..e4c01522 100644 --- a/standards/smime/Cargo.toml +++ b/standards/smime/Cargo.toml @@ -9,6 +9,6 @@ repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rasn = { path = "../..", version = "0.12.3" } -rasn-cms = { path = "../cms", version = "0.12.3" } -rasn-pkix = { path = "../pkix", version = "0.12.3" } +rasn = { path = "../..", version = "0.12.4" } +rasn-cms = { path = "../cms", version = "0.12.4" } +rasn-pkix = { path = "../pkix", version = "0.12.4" } diff --git a/standards/snmp/Cargo.toml b/standards/snmp/Cargo.toml index 0ba2aa51..b571f0f9 100644 --- a/standards/snmp/Cargo.toml +++ b/standards/snmp/Cargo.toml @@ -8,8 +8,8 @@ license.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -smi = { path = "../smi", package = "rasn-smi", version = "0.12.3" } -rasn = { path = "../..", version = "0.12.3" } +smi = { path = "../smi", package = "rasn-smi", version = "0.12.4" } +rasn = { path = "../..", version = "0.12.4" } [dev-dependencies] hex = "0.4.3"