Skip to content

Commit f2dcfdd

Browse files
chore(release): prepare for publishing (#467)
1 parent 4bbe407 commit f2dcfdd

File tree

5 files changed

+23
-9
lines changed

5 files changed

+23
-9
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
## [[0.16.0](https://github.com/Devolutions/sspi-rs/compare/sspi-v0.15.14...sspi-v0.16.0)] - 2025-07-07
10+
11+
### <!-- 1 -->Features
12+
13+
- Server-side Kerberos implementation (#440) ([943a297edd](https://github.com/Devolutions/sspi-rs/commit/943a297eddad91bf6dfa02bdb53b422453df0ed9))
14+
15+
### <!-- 4 -->Bug Fixes
16+
17+
- Server-side Kerberos fixes (#457) ([27ce28dad5](https://github.com/Devolutions/sspi-rs/commit/27ce28dad5aa490d094b4ea1db5a315ea1478264))
18+
19+
- Kerberos server MIC token generation and validation (#464) ([12fbd706a8](https://github.com/Devolutions/sspi-rs/commit/12fbd706a8e807b4e4ea9b6bb39f4bace60afd9a))
20+
21+
- Kerberos server WRAP token generation and validation (#463) ([4bbe4071c8](https://github.com/Devolutions/sspi-rs/commit/4bbe4071c80172ee2c85552ef1060a65394a45c0))
22+
923
## [[0.15.14](https://github.com/Devolutions/sspi-rs/compare/sspi-v0.15.13...sspi-v0.15.14)] - 2025-07-01
1024

1125
### <!-- 7 -->Build

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sspi"
3-
version = "0.15.14"
3+
version = "0.16.0"
44
edition = "2021"
55
readme = "README.md"
66
license = "MIT OR Apache-2.0"
@@ -55,7 +55,7 @@ tokio = "1.45"
5555
ffi-types = { path = "crates/ffi-types" }
5656
winscard = { version = "0.2", path = "crates/winscard" }
5757

58-
dpapi = { version = "0.1.0", path = "crates/dpapi" }
58+
dpapi = { version = "0.2.0", path = "crates/dpapi" }
5959
dpapi-core = { version = "0.1.0", path = "crates/dpapi-core" }
6060
dpapi-pdu = { version = "0.1.0", path = "crates/dpapi-pdu" }
6161
dpapi-transport = { version = "0.1.0", path = "crates/dpapi-transport" }

crates/dpapi-web/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ panic_hook = ["dep:console_error_panic_hook"]
2424
# DPAPI
2525
dpapi.workspace = true
2626
dpapi-transport.workspace = true
27-
sspi = { path = "../..", version = "0.15" }
27+
sspi = { path = "../..", version = "0.16" }
2828

2929
# WASM
3030
wasm-bindgen = "0.2"

crates/dpapi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dpapi"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
readme = "README.md"
66
license = "MIT/Apache-2.0"
@@ -37,7 +37,7 @@ whoami.workspace = true
3737
dpapi-core = { workspace = true, features = ["alloc"] }
3838
dpapi-pdu.workspace = true
3939
dpapi-transport.workspace = true
40-
sspi = { path = "../..", version = "0.15" }
40+
sspi = { path = "../..", version = "0.16" } # public
4141

4242
kbkdf = "0.0.1"
4343
sha1-pre = { version = "0.11.0-pre.2", package = "sha1" }

0 commit comments

Comments
 (0)