Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jul 9, 2024
1 parent d301ac0 commit 8af6038
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 19 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.16.0](https://github.com/librasn/rasn/compare/rasn-v0.15.3...rasn-v0.16.0) - 2024-07-09

### Fixed
- pass constraints correctly when encoding optional type ([#276](https://github.com/librasn/rasn/pull/276))
- Hide `jer` behind feature (implying `std`). ([#266](https://github.com/librasn/rasn/pull/266))

### Other
- Unify and Improve error handling of restricted strings ([#269](https://github.com/librasn/rasn/pull/269))
- fix untagged sequence bitfield bits ([#279](https://github.com/librasn/rasn/pull/279))
- fix encoding of empty extension values ([#278](https://github.com/librasn/rasn/pull/278))
- correctly encode null in option in extensions ([#277](https://github.com/librasn/rasn/pull/277))
- fix empty length decoding, no zero padding allowed ([#274](https://github.com/librasn/rasn/pull/274))
- decode error when unused preamble bits are not zero ([#273](https://github.com/librasn/rasn/pull/273))
- check quantity data size on sequence of ([#275](https://github.com/librasn/rasn/pull/275))
- Fix invalid handling of zero padding on length of length on COER ([#268](https://github.com/librasn/rasn/pull/268))
- Hide `snafu` backtraces behind `std`. ([#265](https://github.com/librasn/rasn/pull/265))

## [0.15.3](https://github.com/librasn/rasn/compare/rasn-v0.15.2...rasn-v0.15.3) - 2024-06-14

### Other
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exclude = ["fuzzing"]
[workspace.package]
edition = "2021"
license = "MIT/Apache-2.0"
version = "0.15.3"
version = "0.16.0"
repository = "https://github.com/librasn/rasn.git"

[workspace.dependencies]
Expand Down Expand Up @@ -52,7 +52,7 @@ num-traits = { version = "0.2.16", default-features = false }
snafu = { version = "0.7.5", default-features = false, features = [] }
bytes = { version = "1.4.0", default-features = false }
bitvec.workspace = true
rasn-derive = { version = "0.15", path = "macros", optional = true }
rasn-derive = { version = "0.16", path = "macros", optional = true }
chrono.workspace = true
konst = { version = "0.3.5", default-features = false }
nom-bitvec = { package = "bitvec-nom2", version = "0.2.0" }
Expand Down
2 changes: 1 addition & 1 deletion standards/cap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.15" }
rasn = { path = "../..", version = "0.16" }
4 changes: 2 additions & 2 deletions standards/cms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ license.workspace = true
repository.workspace = true

[dependencies.rasn]
version = "0.15"
version = "0.16"
path = "../.."

[dependencies.rasn-pkix]
version = "0.15"
version = "0.16"
path = "../pkix"
4 changes: 2 additions & 2 deletions standards/kerberos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ features = ["otp"]
otp = ["rasn-pkix"]

[dependencies]
rasn = { path = "../..", version = "0.15" }
rasn-pkix = { path = "../pkix", version = "0.15", optional = true }
rasn = { path = "../..", version = "0.16" }
rasn-pkix = { path = "../pkix", version = "0.16", optional = true }

[dev-dependencies]
pretty_assertions.workspace = true
2 changes: 1 addition & 1 deletion standards/ldap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.15" }
rasn = { path = "../..", version = "0.16" }
4 changes: 2 additions & 2 deletions standards/mib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.15" }
rasn = { path = "../..", version = "0.15" }
smi = { path = "../smi", package = "rasn-smi", version = "0.16" }
rasn = { path = "../..", version = "0.16" }
4 changes: 2 additions & 2 deletions standards/ocsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.15" }
rasn-pkix = { path = "../pkix", version = "0.15" }
rasn = { path = "../..", version = "0.16" }
rasn-pkix = { path = "../pkix", version = "0.16" }
2 changes: 1 addition & 1 deletion standards/pkix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.15" }
rasn = { path = "../..", version = "0.16" }

[dev-dependencies]
base64 = "0.13"
Expand Down
2 changes: 1 addition & 1 deletion standards/smi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.15" }
rasn = { path = "../..", version = "0.16" }
chrono.workspace = true
6 changes: 3 additions & 3 deletions standards/smime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.15" }
rasn-cms = { path = "../cms", version = "0.15" }
rasn-pkix = { path = "../pkix", version = "0.15" }
rasn = { path = "../..", version = "0.16" }
rasn-cms = { path = "../cms", version = "0.16" }
rasn-pkix = { path = "../pkix", version = "0.16" }
4 changes: 2 additions & 2 deletions standards/snmp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.15" }
rasn = { path = "../..", version = "0.15" }
smi = { path = "../smi", package = "rasn-smi", version = "0.16" }
rasn = { path = "../..", version = "0.16" }

[dev-dependencies]
hex = "0.4.3"
Expand Down

0 comments on commit 8af6038

Please sign in to comment.