Skip to content

Commit

Permalink
chore: release v0.22.1 (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jan 3, 2025
1 parent 26c0117 commit 0f699ea
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 21 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.22.1](https://github.com/librasn/rasn/compare/rasn-v0.22.0...rasn-v0.22.1) - 2025-01-03

### Fixed

- *(derive)* use `const` blocks and add generic bounds when generating an enum's `AsnType` impl (#398)
- add missing `Copy` impl to `FixedOctetString<N>` (#396)
- remove `Default` bound from `[T; N]`'s `Decode` impl (#395)
- Fix PER encoding of empty octet strings missing the length determinant (#393)
- FixedBitString might work as expected (#385)

### Other

- fix accidental double backtick in `Integer` docs (#394)
- Fix panic in the JER OctetString decoder if the string isn't even length ([#382](https://github.com/librasn/rasn/pull/382))
- oer: format! in error messages has too much impact (#387)
- Add `decode_with_remainder` for decoding stream (#386)
- OER: remove nom usage, improve errors (#384)
- Remove trails of BitSlice and unnecessary length checks ([#381](https://github.com/librasn/rasn/pull/381))
- use shifting to construct primitive integers (#379)

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

### Added
Expand Down
38 changes: 19 additions & 19 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion 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.22.0"
version = "0.22.1"
repository = "https://github.com/librasn/rasn.git"

[workspace.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ proc-macro = true
[dependencies]
syn = { version = "2.0.79", features = ["extra-traits"] }
proc-macro2 = "1.0.88"
rasn-derive-impl = { version = "0.22.0", path = "macros_impl" }
rasn-derive-impl = { version = "0.22.1", path = "macros_impl" }
10 changes: 10 additions & 0 deletions macros/macros_impl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
+
+## [Unreleased]

## [0.22.1](https://github.com/librasn/rasn/compare/rasn-derive-impl-v0.22.0...rasn-derive-impl-v0.22.1) - 2025-01-03

### Fixed

- *(derive)* use `const` blocks and add generic bounds when generating an enum's `AsnType` impl (#398)

### Other

- OER: remove nom usage, improve errors (#384)

## [0.22.0](https://github.com/librasn/rasn/compare/rasn-derive-impl-v0.21.0...rasn-derive-impl-v0.22.0) - 2024-11-26

### Other
Expand Down
6 changes: 6 additions & 0 deletions standards/cdt/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.22.1](https://github.com/librasn/rasn/compare/rasn-cdt-v0.22.0...rasn-cdt-v0.22.1) - 2025-01-03

### Other

- OER: remove nom usage, improve errors (#384)

## [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
6 changes: 6 additions & 0 deletions standards/mib/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.22.1](https://github.com/librasn/rasn/compare/rasn-mib-v0.22.0...rasn-mib-v0.22.1) - 2025-01-03

### Other

- OER: remove nom usage, improve errors (#384)

## [0.11.0](https://github.com/XAMPPRocky/rasn/compare/rasn-mib-v0.10.6...rasn-mib-v0.11.0) - 2023-10-28

### Other
Expand Down

0 comments on commit 0f699ea

Please sign in to comment.