Skip to content

Commit 566b27e

Browse files
chore(release): prepare for publishing
1 parent a4889f5 commit 566b27e

File tree

6 files changed

+85
-22
lines changed

6 files changed

+85
-22
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,42 @@ 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.18.5](https://github.com/Devolutions/sspi-rs/compare/sspi-v0.18.4...sspi-v0.18.5)] - 2025-12-11
10+
11+
### <!-- 1 -->Features
12+
13+
- Add initial KDC implementation ([#541](https://github.com/Devolutions/sspi-rs/issues/541)) ([10ed474fe5](https://github.com/Devolutions/sspi-rs/commit/10ed474fe577583095305dd9ef0d5172321a643f))
14+
15+
### <!-- 4 -->Bug Fixes
16+
17+
- Don't use eprintln on unknown packages ([#558](https://github.com/Devolutions/sspi-rs/issues/558)) ([df6181291c](https://github.com/Devolutions/sspi-rs/commit/df6181291ccf6f9fb2a0a59151b43676663b2d74))
18+
19+
This is an annoyance; `freerdp` uses `u2u` _not_ `pku2u` here. Every
20+
time we use sspi-rs from `freerdp` I'm passing `!u2u` on the package
21+
list, and sspi-rs is spamming stderr with this message.
22+
23+
- Replace `String::from_utf16_lossy` with `String::from_utf16` ([#568](https://github.com/Devolutions/sspi-rs/issues/568)) ([a4889f5b1e](https://github.com/Devolutions/sspi-rs/commit/a4889f5b1e802395b09954f5846d1a6433546281))
24+
25+
### <!-- 7 -->Build
26+
27+
- Bump tokio-tungstenite from 0.27.0 to 0.28.0 ([#554](https://github.com/Devolutions/sspi-rs/issues/554)) ([b6e36c9dcc](https://github.com/Devolutions/sspi-rs/commit/b6e36c9dcc9bcb12423df278ebc909d127986eb5))
28+
29+
- Bump the patch group across 1 directory with 5 updates ([#552](https://github.com/Devolutions/sspi-rs/issues/552)) ([879bcaa619](https://github.com/Devolutions/sspi-rs/commit/879bcaa61921a66823776af1909a6a1c4cfbf599))
30+
31+
- Bump libc from 0.2.177 to 0.2.178 in the patch group across 1 directory ([#559](https://github.com/Devolutions/sspi-rs/issues/559)) ([3301ab3026](https://github.com/Devolutions/sspi-rs/commit/3301ab30261e67ac2cbfe0d2855deee075f8a7d7))
32+
33+
- Update picky-krb requirement from 0.11 to 0.12 in /fuzz ([#555](https://github.com/Devolutions/sspi-rs/issues/555)) ([6395577128](https://github.com/Devolutions/sspi-rs/commit/6395577128bc3ae4b3e5982a8e08369a678a0212))
34+
35+
- Bump picky-krb from 0.11.3 to 0.12.0 ([#553](https://github.com/Devolutions/sspi-rs/issues/553)) ([f636f48164](https://github.com/Devolutions/sspi-rs/commit/f636f4816438ff430973c140a9a63fd5708d1439))
36+
37+
- Update windows-registry requirement from 0.5 to 0.6 in /fuzz ([#565](https://github.com/Devolutions/sspi-rs/issues/565)) ([7e715ad52a](https://github.com/Devolutions/sspi-rs/commit/7e715ad52ae7fa0dbe4c7e8f38e612924a49efe8))
38+
39+
- Bump windows-registry from 0.5.3 to 0.6.1 ([#561](https://github.com/Devolutions/sspi-rs/issues/561)) ([60c2d78d78](https://github.com/Devolutions/sspi-rs/commit/60c2d78d788816f5a363f8ec9d9e43287bc71513))
40+
41+
- Bump windows from 0.61.3 to 0.62.2 ([#562](https://github.com/Devolutions/sspi-rs/issues/562)) ([195cee2ebd](https://github.com/Devolutions/sspi-rs/commit/195cee2ebd0151e236b1b404f59e828f86aa512f))
42+
43+
44+
945
## [[0.18.4](https://github.com/Devolutions/sspi-rs/compare/sspi-v0.18.3...sspi-v0.18.4)] - 2025-11-18
1046

1147
### <!-- 7 -->Build

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sspi"
3-
version = "0.18.4"
3+
version = "0.18.5"
44
edition = "2021"
55
readme = "README.md"
66
license = "MIT OR Apache-2.0"

crates/kdc/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
9+
## [[0.1.0](https://github.com/Devolutions/sspi-rs/releases/tag/kdc-v0.1.0)] - 2025-12-11
10+
11+
### <!-- 1 -->Features
12+
13+
- Add initial KDC implementation ([#541](https://github.com/Devolutions/sspi-rs/issues/541)) ([10ed474fe5](https://github.com/Devolutions/sspi-rs/commit/10ed474fe577583095305dd9ef0d5172321a643f))
14+
15+
### <!-- 7 -->Build
16+
17+
- Update picky-krb requirement from 0.11 to 0.12 in /fuzz ([#555](https://github.com/Devolutions/sspi-rs/issues/555)) ([6395577128](https://github.com/Devolutions/sspi-rs/commit/6395577128bc3ae4b3e5982a8e08369a678a0212))
18+
19+

crates/winscard/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ 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.2.5](https://github.com/Devolutions/sspi-rs/compare/winscard-v0.2.4...winscard-v0.2.5)] - 2025-12-11
10+
11+
### <!-- 4 -->Bug Fixes
12+
13+
- Replace `String::from_utf16_lossy` with `String::from_utf16` ([#568](https://github.com/Devolutions/sspi-rs/issues/568)) ([a4889f5b1e](https://github.com/Devolutions/sspi-rs/commit/a4889f5b1e802395b09954f5846d1a6433546281))
14+
15+
16+
917
## [[0.2.4](https://github.com/Devolutions/sspi-rs/compare/winscard-v0.2.3...winscard-v0.2.4)] - 2025-11-18
1018

1119
### <!-- 7 -->Build

crates/winscard/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "winscard"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
edition = "2021"
55
readme = "README.md"
66
license = "MIT/Apache-2.0"

0 commit comments

Comments
 (0)