diff --git a/CHANGELOG.md b/CHANGELOG.md index ec1d0c13..5f9706a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.5](https://github.com/XAMPPRocky/rasn/compare/rasn-v0.9.4...rasn-v0.9.5) - 2023-08-24 + +### Other +- Add TryFrom for str type for PrintableString, docs, minor fixes ([#149](https://github.com/XAMPPRocky/rasn/pull/149)) +- Improved size constraint ([#142](https://github.com/XAMPPRocky/rasn/pull/142)) + ## [0.9.4](https://github.com/XAMPPRocky/rasn/compare/rasn-v0.9.3...rasn-v0.9.4) - 2023-08-08 ### Other diff --git a/Cargo.toml b/Cargo.toml index f13e27a1..6db70fc2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ exclude = ["fuzzing"] [workspace.package] edition = "2021" license = "MIT/Apache-2.0" -version = "0.9.4" +version = "0.9.5" repository = "https://github.com/XAMPPRocky/rasn.git" [workspace.dependencies] diff --git a/standards/cap/Cargo.toml b/standards/cap/Cargo.toml index ebadee93..f2a10897 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.9.4" } +rasn = { path = "../..", version = "0.9.5" } diff --git a/standards/cms/Cargo.toml b/standards/cms/Cargo.toml index b660dfe0..eef2876c 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.9.4" +version = "0.9.5" path = "../.." [dependencies.rasn-pkix] -version = "0.9.4" +version = "0.9.5" path = "../pkix" diff --git a/standards/kerberos/Cargo.toml b/standards/kerberos/Cargo.toml index a4dde9e2..860813c1 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.9.4" } -rasn-pkix = { path = "../pkix", version = "0.9.4", optional = true } +rasn = { path = "../..", version = "0.9.5" } +rasn-pkix = { path = "../pkix", version = "0.9.5", optional = true } [dev-dependencies] pretty_assertions.workspace = true diff --git a/standards/ldap/Cargo.toml b/standards/ldap/Cargo.toml index 88e95828..983456d8 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.9.4" } +rasn = { path = "../..", version = "0.9.5" } diff --git a/standards/mib/Cargo.toml b/standards/mib/Cargo.toml index 3531f2c3..9a9bd24d 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.9.4" } -rasn = { path = "../..", version = "0.9.4" } +smi = { path = "../smi", package = "rasn-smi", version = "0.9.5" } +rasn = { path = "../..", version = "0.9.5" } diff --git a/standards/ocsp/Cargo.toml b/standards/ocsp/Cargo.toml index fded7cef..74186494 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.9.4" } -rasn-pkix = { path = "../pkix", version = "0.9.4" } +rasn = { path = "../..", version = "0.9.5" } +rasn-pkix = { path = "../pkix", version = "0.9.5" } diff --git a/standards/pkix/Cargo.toml b/standards/pkix/Cargo.toml index 4161c4a1..4b5f0474 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.9.4" } +rasn = { path = "../..", version = "0.9.5" } [dev-dependencies] base64 = "0.13" diff --git a/standards/smi/Cargo.toml b/standards/smi/Cargo.toml index 638980d6..c62ea901 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.9.4" } +rasn = { path = "../..", version = "0.9.5" } chrono.workspace = true diff --git a/standards/smime/Cargo.toml b/standards/smime/Cargo.toml index 2be5c393..3b692cf3 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.9.4" } -rasn-cms = { path = "../cms", version = "0.9.4" } -rasn-pkix = { path = "../pkix", version = "0.9.4" } +rasn = { path = "../..", version = "0.9.5" } +rasn-cms = { path = "../cms", version = "0.9.5" } +rasn-pkix = { path = "../pkix", version = "0.9.5" } diff --git a/standards/snmp/Cargo.toml b/standards/snmp/Cargo.toml index d447ccfd..ca1d5892 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.9.4" } -rasn = { path = "../..", version = "0.9.4" } +smi = { path = "../smi", package = "rasn-smi", version = "0.9.5" } +rasn = { path = "../..", version = "0.9.5" } [dev-dependencies] hex = "0.4.3"