Skip to content

Commit 6250605

Browse files
chore: release v0.24.1 (#411)
1 parent c7f7cd2 commit 6250605

26 files changed

+87
-45
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.25.0](https://github.com/librasn/rasn/compare/rasn-v0.24.0...rasn-v0.25.0) - 2025-03-07
10+
11+
### Other
12+
13+
- Feat/xml encoding rules ([#416](https://github.com/librasn/rasn/pull/416))
14+
915
## [0.24.0](https://github.com/librasn/rasn/compare/rasn-v0.23.0...rasn-v0.24.0) - 2025-01-30
1016

1117
### Added

Cargo.lock

+19-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ exclude = ["fuzzing"]
1919
[workspace.package]
2020
edition = "2021"
2121
license = "MIT OR Apache-2.0"
22-
version = "0.24.0"
22+
version = "0.25.0"
2323
repository = "https://github.com/librasn/rasn.git"
2424

2525
[workspace.dependencies]
@@ -92,7 +92,7 @@ once_cell = { version = "1.20.2", default-features = false, features = [
9292
"alloc",
9393
] }
9494
rasn-compiler = { version = "0.7", optional = true }
95-
rasn-derive = { version = "0.24", path = "macros" }
95+
rasn-derive = { version = "0.25", path = "macros" }
9696
snafu = { version = "0.8.5", default-features = false, features = [
9797
"rust_1_81",
9898
] }

macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ proc-macro = true
1515
[dependencies]
1616
syn = { version = "2.0.79", features = ["extra-traits"] }
1717
proc-macro2 = "1.0.88"
18-
rasn-derive-impl = { version = "0.24.0", path = "macros_impl" }
18+
rasn-derive-impl = { version = "0.25.0", path = "macros_impl" }

macros/macros_impl/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
+
1515
+## [Unreleased]
1616

17+
## [0.25.0](https://github.com/librasn/rasn/compare/rasn-derive-impl-v0.24.0...rasn-derive-impl-v0.25.0) - 2025-03-07
18+
19+
### Other
20+
21+
- Feat/xml encoding rules ([#416](https://github.com/librasn/rasn/pull/416))
22+
1723
## [0.22.2](https://github.com/librasn/rasn/compare/rasn-derive-impl-v0.22.1...rasn-derive-impl-v0.22.2) - 2025-01-05
1824

1925
### Other

standards/atn-cpdlc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ repository.workspace = true
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.24" }
12+
rasn = { path = "../..", version = "0.25" }

standards/atn-ulcs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ repository.workspace = true
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.24" }
12+
rasn = { path = "../..", version = "0.25" }

standards/cap/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ repository.workspace = true
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.24" }
12+
rasn = { path = "../..", version = "0.25" }

standards/cbr/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ repository.workspace = true
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.24" }
12+
rasn = { path = "../..", version = "0.25" }

standards/cdt/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ repository.workspace = true
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.24" }
12+
rasn = { path = "../..", version = "0.25" }

standards/cms/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ license.workspace = true
77
repository.workspace = true
88

99
[dependencies.rasn]
10-
version = "0.24"
10+
version = "0.25"
1111
path = "../.."
1212

1313
[dependencies.rasn-pkix]
14-
version = "0.24"
14+
version = "0.25"
1515
path = "../pkix"
1616

1717
[dev-dependencies]

standards/credssp/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ repository.workspace = true
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.24" }
12+
rasn = { path = "../..", version = "0.25" }

standards/h282/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ repository.workspace = true
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.24" }
12+
rasn = { path = "../..", version = "0.25" }

standards/kerberos/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.25.0](https://github.com/librasn/rasn/compare/rasn-kerberos-v0.24.0...rasn-kerberos-v0.25.0) - 2025-03-07
10+
11+
### Other
12+
13+
- Feat/xml encoding rules ([#416](https://github.com/librasn/rasn/pull/416))
14+
915
## [0.20.2](https://github.com/librasn/rasn/compare/rasn-kerberos-v0.20.1...rasn-kerberos-v0.20.2) - 2024-10-18
1016

1117
### Fixed

standards/kerberos/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ features = ["otp"]
1414
otp = ["rasn-pkix"]
1515

1616
[dependencies]
17-
rasn = { path = "../..", version = "0.24" }
18-
rasn-pkix = { path = "../pkix", version = "0.24", optional = true }
17+
rasn = { path = "../..", version = "0.25" }
18+
rasn-pkix = { path = "../pkix", version = "0.25", optional = true }
1919

2020
[dev-dependencies]
2121
pretty_assertions.workspace = true

standards/ldap/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.25.0](https://github.com/librasn/rasn/compare/rasn-ldap-v0.24.0...rasn-ldap-v0.25.0) - 2025-03-07
10+
11+
### Other
12+
13+
- Feat/xml encoding rules ([#416](https://github.com/librasn/rasn/pull/416))
14+
915
## [0.21.0](https://github.com/librasn/rasn/compare/rasn-ldap-v0.20.2...rasn-ldap-v0.21.0) - 2024-11-12
1016

1117
### Fixed

standards/ldap/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ repository.workspace = true
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.24" }
12+
rasn = { path = "../..", version = "0.25" }

standards/mib/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.25.0](https://github.com/librasn/rasn/compare/rasn-mib-v0.24.0...rasn-mib-v0.25.0) - 2025-03-07
10+
11+
### Other
12+
13+
- Feat/xml encoding rules ([#416](https://github.com/librasn/rasn/pull/416))
14+
915
## [0.22.1](https://github.com/librasn/rasn/compare/rasn-mib-v0.22.0...rasn-mib-v0.22.1) - 2025-01-03
1016

1117
### Other

standards/mib/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ repository.workspace = true
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
smi = { path = "../smi", package = "rasn-smi", version = "0.24" }
13-
rasn = { path = "../..", version = "0.24" }
12+
smi = { path = "../smi", package = "rasn-smi", version = "0.25" }
13+
rasn = { path = "../..", version = "0.25" }

standards/ocsp/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ repository.workspace = true
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.24" }
13-
rasn-pkix = { path = "../pkix", version = "0.24" }
12+
rasn = { path = "../..", version = "0.25" }
13+
rasn-pkix = { path = "../pkix", version = "0.25" }

standards/pkix/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.25.0](https://github.com/librasn/rasn/compare/rasn-pkix-v0.24.0...rasn-pkix-v0.25.0) - 2025-03-07
10+
11+
### Other
12+
13+
- Feat/xml encoding rules ([#416](https://github.com/librasn/rasn/pull/416))
14+
915
## [0.21.0](https://github.com/librasn/rasn/compare/rasn-pkix-v0.20.2...rasn-pkix-v0.21.0) - 2024-11-12
1016

1117
### Added

standards/pkix/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository.workspace = true
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.24" }
12+
rasn = { path = "../..", version = "0.25" }
1313

1414
[dev-dependencies]
1515
base64 = "0.22"

standards/smi/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.25.0](https://github.com/librasn/rasn/compare/rasn-smi-v0.24.0...rasn-smi-v0.25.0) - 2025-03-07
10+
11+
### Other
12+
13+
- Feat/xml encoding rules ([#416](https://github.com/librasn/rasn/pull/416))
14+
915
## [0.18.0](https://github.com/librasn/rasn/compare/rasn-smi-v0.17.3...rasn-smi-v0.18.0) - 2024-09-17
1016

1117
### Added

standards/smi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ repository.workspace = true
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.24" }
12+
rasn = { path = "../..", version = "0.25" }
1313
chrono.workspace = true

standards/smime/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ repository.workspace = true
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.24" }
13-
rasn-cms = { path = "../cms", version = "0.24" }
14-
rasn-pkix = { path = "../pkix", version = "0.24" }
12+
rasn = { path = "../..", version = "0.25" }
13+
rasn-cms = { path = "../cms", version = "0.25" }
14+
rasn-pkix = { path = "../pkix", version = "0.25" }

0 commit comments

Comments
 (0)