Skip to content

Commit

Permalink
chore: release v0.21.0 (#367)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Nov 13, 2024
1 parent 66c7d4e commit 811fae8
Show file tree
Hide file tree
Showing 26 changed files with 150 additions and 45 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.21.0](https://github.com/librasn/rasn/compare/rasn-v0.20.2...rasn-v0.21.0) - 2024-11-12

### Added

- Implement Algorithms and Identifiers PKIX module

### Fixed

- split iai and criterion benches, use correct adapters ([#366](https://github.com/librasn/rasn/pull/366))
- cleanup some unnecessary dependencies ([#362](https://github.com/librasn/rasn/pull/362))
- remove version pin from release-plz ([#356](https://github.com/librasn/rasn/pull/356))
- Don't override generics impl in proc-macros on encode impl ([#354](https://github.com/librasn/rasn/pull/354))
- pin release-plz version until fixed ([#353](https://github.com/librasn/rasn/pull/353))
- decoding of extended fields in sequence in BER ([#351](https://github.com/librasn/rasn/pull/351))
- Fix most issues related to dependency update, except hashbrown version ([#349](https://github.com/librasn/rasn/pull/349))

### Other

- Update README.md
- Update README.md
- Update README.md
- Remove dependency on rayon ([#363](https://github.com/librasn/rasn/pull/363))
- Extract proc macro into own crate ([#364](https://github.com/librasn/rasn/pull/364))
- Update base_benchmarks.yml
- Attempt to fix base benchmarks on CI ([#365](https://github.com/librasn/rasn/pull/365))
- Update base_benchmarks.yml
- Update base_benchmarks.yml
- Create base_benchmarks.yml
- Update from iai to iai-callgrind ([#358](https://github.com/librasn/rasn/pull/358))
- black box integer test, use macros ([#360](https://github.com/librasn/rasn/pull/360))
- Optimize field presence tracking of default/optional/extended fields ([#324](https://github.com/librasn/rasn/pull/324))
- run x509 benches only on x86_64 or aarch64 ([#355](https://github.com/librasn/rasn/pull/355))
- Add other X.509 libraries to bench
- update dependencies
- update lockfile
- update lockfile
- Create FUNDING.yml

## [0.20.2](https://github.com/librasn/rasn/compare/rasn-v0.20.1...rasn-v0.20.2) - 2024-10-18

### Fixed
Expand Down
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 OR Apache-2.0"
version = "0.20.2"
version = "0.21.0"
repository = "https://github.com/librasn/rasn.git"

[workspace.dependencies]
Expand Down Expand Up @@ -78,7 +78,7 @@ once_cell = { version = "1.20.2", default-features = false, features = [
"alloc",
] }
rasn-compiler = { version = "0.5.3", optional = true }
rasn-derive = { version = "0.20", path = "macros" }
rasn-derive = { version = "0.21", path = "macros" }
snafu = { version = "0.8.5", default-features = false, features = [
"rust_1_81",
] }
Expand Down
15 changes: 15 additions & 0 deletions macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.21.0](https://github.com/librasn/rasn/compare/rasn-derive-v0.20.2...rasn-derive-v0.21.0) - 2024-11-12

### Fixed

- cleanup some unnecessary dependencies ([#362](https://github.com/librasn/rasn/pull/362))
- Don't override generics impl in proc-macros on encode impl ([#354](https://github.com/librasn/rasn/pull/354))
- decoding of extended fields in sequence in BER ([#351](https://github.com/librasn/rasn/pull/351))

### Other

- Extract proc macro into own crate ([#364](https://github.com/librasn/rasn/pull/364))
- Optimize field presence tracking of default/optional/extended fields ([#324](https://github.com/librasn/rasn/pull/324))
- Disallow structs without fields for a `set` ([#352](https://github.com/librasn/rasn/pull/352))
- update dependencies

## [0.20.2](https://github.com/librasn/rasn/compare/rasn-derive-v0.20.1...rasn-derive-v0.20.2) - 2024-10-18

### Fixed
Expand Down
8 changes: 8 additions & 0 deletions macros/macros_impl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Changelog

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

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
+# Changelog
+All notable changes to this project will be documented in this file.
+
Expand Down
2 changes: 1 addition & 1 deletion standards/atn-cpdlc/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.20" }
rasn = { path = "../..", version = "0.21" }
2 changes: 1 addition & 1 deletion standards/atn-ulcs/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.20" }
rasn = { path = "../..", version = "0.21" }
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.20" }
rasn = { path = "../..", version = "0.21" }
2 changes: 1 addition & 1 deletion standards/cbr/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.20" }
rasn = { path = "../..", version = "0.21" }
2 changes: 1 addition & 1 deletion standards/cdt/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.20" }
rasn = { path = "../..", version = "0.21" }
10 changes: 10 additions & 0 deletions standards/cms/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.21.0](https://github.com/librasn/rasn/compare/rasn-cms-v0.20.2...rasn-cms-v0.21.0) - 2024-11-12

### Fixed

- Fix most issues related to dependency update, except hashbrown version ([#349](https://github.com/librasn/rasn/pull/349))

### Other

- Optimize field presence tracking of default/optional/extended fields ([#324](https://github.com/librasn/rasn/pull/324))

## [0.20.2](https://github.com/librasn/rasn/compare/rasn-cms-v0.20.1...rasn-cms-v0.20.2) - 2024-10-18

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions standards/cms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ license.workspace = true
repository.workspace = true

[dependencies.rasn]
version = "0.20"
version = "0.21"
path = "../.."

[dependencies.rasn-pkix]
version = "0.20"
version = "0.21"
path = "../pkix"

[dev-dependencies]
Expand Down
6 changes: 6 additions & 0 deletions standards/credssp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.21.0](https://github.com/librasn/rasn/compare/rasn-credssp-v0.20.2...rasn-credssp-v0.21.0) - 2024-11-12

### Other

- Update README.md

## [0.8.0](https://github.com/XAMPPRocky/rasn/compare/rasn-cap-v0.7.0...rasn-cap-v0.8.0) - 2023-07-11

### Other
Expand Down
2 changes: 1 addition & 1 deletion standards/credssp/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.20" }
rasn = { path = "../..", version = "0.21" }
2 changes: 1 addition & 1 deletion standards/h282/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.20" }
rasn = { path = "../..", version = "0.21" }
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.20" }
rasn-pkix = { path = "../pkix", version = "0.20", optional = true }
rasn = { path = "../..", version = "0.21" }
rasn-pkix = { path = "../pkix", version = "0.21", optional = true }

[dev-dependencies]
pretty_assertions.workspace = true
6 changes: 6 additions & 0 deletions standards/ldap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.21.0](https://github.com/librasn/rasn/compare/rasn-ldap-v0.20.2...rasn-ldap-v0.21.0) - 2024-11-12

### Fixed

- *(ldap)* correct tag handing in Decoder and Encoder impls for LdapString ([#369](https://github.com/librasn/rasn/pull/369))

## [0.20.2](https://github.com/librasn/rasn/compare/rasn-ldap-v0.20.1...rasn-ldap-v0.20.2) - 2024-10-18

### Fixed
Expand Down
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.20" }
rasn = { path = "../..", version = "0.21" }
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.20" }
rasn = { path = "../..", version = "0.20" }
smi = { path = "../smi", package = "rasn-smi", version = "0.21" }
rasn = { path = "../..", version = "0.21" }
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.20" }
rasn-pkix = { path = "../pkix", version = "0.20" }
rasn = { path = "../..", version = "0.21" }
rasn-pkix = { path = "../pkix", version = "0.21" }
Loading

0 comments on commit 811fae8

Please sign in to comment.