Skip to content

Commit

Permalink
chore: release (#320)
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 Sep 17, 2024
1 parent a13bfa5 commit 59d5597
Show file tree
Hide file tree
Showing 22 changed files with 122 additions and 31 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.18.0](https://github.com/librasn/rasn/compare/rasn-v0.17.3...rasn-v0.18.0) - 2024-09-17

### Added

- [**breaking**] Rework for SetOf type ([#325](https://github.com/librasn/rasn/pull/325))
- Change LDAPString to be newtype wrapper around String ([#327](https://github.com/librasn/rasn/pull/327))
- [**breaking**] Remove option_type ([#329](https://github.com/librasn/rasn/pull/329))
- Constraint utilities, const default, more const functions ([#321](https://github.com/librasn/rasn/pull/321))

### Fixed

- macros: include license texts in the packaged crate ([#330](https://github.com/librasn/rasn/pull/330))
- [**breaking**] Remove jer feature, jer is enabled by default
- [**breaking**] Remove Tag and TagTree from module root
- [**breaking**] Make codec module private

### Other

- fix version-pinned types url ([#326](https://github.com/librasn/rasn/pull/326))
- Add basic optimizations for allocations in OER ([#323](https://github.com/librasn/rasn/pull/323))

## [0.17.3](https://github.com/librasn/rasn/compare/rasn-v0.17.2...rasn-v0.17.3) - 2024-09-12

### Other
Expand Down
24 changes: 12 additions & 12 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/Apache-2.0"
version = "0.17.3"
version = "0.18.0"
repository = "https://github.com/librasn/rasn.git"

[workspace.dependencies]
Expand Down Expand Up @@ -67,7 +67,7 @@ num-traits = { version = "0.2.19", default-features = false }
snafu = { version = "0.7.5", default-features = false, features = [] }
bytes = { version = "1.7.1", default-features = false }
bitvec.workspace = true
rasn-derive = { version = "0.17", path = "macros", optional = true }
rasn-derive = { version = "0.18", path = "macros", optional = true }
chrono.workspace = true
konst = { version = "0.3.9", default-features = false }
nom-bitvec = { package = "bitvec-nom2", version = "0.2.1" }
Expand Down
12 changes: 12 additions & 0 deletions macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.18.0](https://github.com/librasn/rasn/compare/rasn-derive-v0.17.3...rasn-derive-v0.18.0) - 2024-09-17

### Added

- [**breaking**] Remove option_type ([#329](https://github.com/librasn/rasn/pull/329))
- Constraint utilities, const default, more const functions ([#321](https://github.com/librasn/rasn/pull/321))

### Fixed

- macros: include license texts in the packaged crate ([#330](https://github.com/librasn/rasn/pull/330))
- [**breaking**] Remove Tag and TagTree from module root

## [0.17.3](https://github.com/librasn/rasn/compare/rasn-derive-v0.17.2...rasn-derive-v0.17.3) - 2024-09-12

### Other
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.17" }
rasn = { path = "../..", version = "0.18" }
6 changes: 6 additions & 0 deletions standards/cms/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.18.0](https://github.com/librasn/rasn/compare/rasn-cms-v0.17.3...rasn-cms-v0.18.0) - 2024-09-17

### Added

- [**breaking**] Rework for SetOf type ([#325](https://github.com/librasn/rasn/pull/325))

## [0.9.3](https://github.com/XAMPPRocky/rasn/compare/rasn-cms-v0.9.2...rasn-cms-v0.9.3) - 2023-08-06

### Other
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,9 +7,9 @@ license.workspace = true
repository.workspace = true

[dependencies.rasn]
version = "0.17"
version = "0.18"
path = "../.."

[dependencies.rasn-pkix]
version = "0.17"
version = "0.18"
path = "../pkix"
10 changes: 10 additions & 0 deletions standards/kerberos/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.18.0](https://github.com/librasn/rasn/compare/rasn-kerberos-v0.17.3...rasn-kerberos-v0.18.0) - 2024-09-17

### Added

- Constraint utilities, const default, more const functions ([#321](https://github.com/librasn/rasn/pull/321))

### Fixed

- [**breaking**] Remove Tag and TagTree from module root

## [0.17.3](https://github.com/librasn/rasn/compare/rasn-kerberos-v0.17.2...rasn-kerberos-v0.17.3) - 2024-09-12

### Other
Expand Down
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.17" }
rasn-pkix = { path = "../pkix", version = "0.17", optional = true }
rasn = { path = "../..", version = "0.18" }
rasn-pkix = { path = "../pkix", version = "0.18", optional = true }

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

## [Unreleased]

## [0.18.0](https://github.com/librasn/rasn/compare/rasn-ldap-v0.17.3...rasn-ldap-v0.18.0) - 2024-09-17

### Added

- [**breaking**] Rework for SetOf type ([#325](https://github.com/librasn/rasn/pull/325))
- Change LDAPString to be newtype wrapper around String ([#327](https://github.com/librasn/rasn/pull/327))

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

### Other
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.17" }
rasn = { path = "../..", version = "0.18" }
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.17" }
rasn = { path = "../..", version = "0.17" }
smi = { path = "../smi", package = "rasn-smi", version = "0.18" }
rasn = { path = "../..", version = "0.18" }
6 changes: 6 additions & 0 deletions standards/ocsp/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.18.0](https://github.com/librasn/rasn/compare/rasn-ocsp-v0.17.3...rasn-ocsp-v0.18.0) - 2024-09-17

### Added

- [**breaking**] Rework for SetOf type ([#325](https://github.com/librasn/rasn/pull/325))

## [0.12.3](https://github.com/XAMPPRocky/rasn/compare/rasn-ocsp-v0.12.2...rasn-ocsp-v0.12.3) - 2023-11-25

### Other
Expand Down
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.17" }
rasn-pkix = { path = "../pkix", version = "0.17" }
rasn = { path = "../..", version = "0.18" }
rasn-pkix = { path = "../pkix", version = "0.18" }
7 changes: 7 additions & 0 deletions standards/pkix/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.18.0](https://github.com/librasn/rasn/compare/rasn-pkix-v0.17.3...rasn-pkix-v0.18.0) - 2024-09-17

### Added

- [**breaking**] Rework for SetOf type ([#325](https://github.com/librasn/rasn/pull/325))
- Constraint utilities, const default, more const functions ([#321](https://github.com/librasn/rasn/pull/321))

## [0.17.3](https://github.com/librasn/rasn/compare/rasn-pkix-v0.17.2...rasn-pkix-v0.17.3) - 2024-09-12

### Other
Expand Down
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.17" }
rasn = { path = "../..", version = "0.18" }

[dev-dependencies]
base64 = "0.13"
Expand Down
10 changes: 10 additions & 0 deletions standards/smi/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.18.0](https://github.com/librasn/rasn/compare/rasn-smi-v0.17.3...rasn-smi-v0.18.0) - 2024-09-17

### Added

- Constraint utilities, const default, more const functions ([#321](https://github.com/librasn/rasn/pull/321))

### Fixed

- [**breaking**] Remove Tag and TagTree from module root

## [0.17.3](https://github.com/librasn/rasn/compare/rasn-smi-v0.17.2...rasn-smi-v0.17.3) - 2024-09-12

### Other
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.17" }
rasn = { path = "../..", version = "0.18" }
chrono.workspace = true
6 changes: 6 additions & 0 deletions standards/smime/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.18.0](https://github.com/librasn/rasn/compare/rasn-smime-v0.17.3...rasn-smime-v0.18.0) - 2024-09-17

### Added

- [**breaking**] Rework for SetOf type ([#325](https://github.com/librasn/rasn/pull/325))

## [0.9.3](https://github.com/XAMPPRocky/rasn/compare/rasn-smime-v0.9.2...rasn-smime-v0.9.3) - 2023-08-06

### Other
Expand Down
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.17" }
rasn-cms = { path = "../cms", version = "0.17" }
rasn-pkix = { path = "../pkix", version = "0.17" }
rasn = { path = "../..", version = "0.18" }
rasn-cms = { path = "../cms", version = "0.18" }
rasn-pkix = { path = "../pkix", version = "0.18" }
6 changes: 6 additions & 0 deletions standards/snmp/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.18.0](https://github.com/librasn/rasn/compare/rasn-snmp-v0.17.3...rasn-snmp-v0.18.0) - 2024-09-17

### Fixed

- [**breaking**] Remove Tag and TagTree from module root

## [0.17.3](https://github.com/librasn/rasn/compare/rasn-snmp-v0.17.2...rasn-snmp-v0.17.3) - 2024-09-12

### Other
Expand Down
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.17" }
rasn = { path = "../..", version = "0.17" }
smi = { path = "../smi", package = "rasn-smi", version = "0.18" }
rasn = { path = "../..", version = "0.18" }

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

0 comments on commit 59d5597

Please sign in to comment.