Skip to content

Commit 86bf9b3

Browse files
committed
chore(release): prepare for publishing
1 parent 836c2ce commit 86bf9b3

File tree

5 files changed

+78
-98
lines changed

5 files changed

+78
-98
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ 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.15.2](https://github.com/Devolutions/sspi-rs/compare/sspi-v0.15.1...sspi-v0.15.2)] - 2025-02-27
10+
11+
### <!-- 1 -->Features
12+
13+
- Support `SECBUFFER_READONLY_WITH_CHECKSUM` flag (#357) ([397fd9502d](https://github.com/Devolutions/sspi-rs/commit/397fd9502dc315e4e8e7c4700b6e789c5e7b44c3))
14+
15+
- Add `USE_DCE_STYLE` flag support (#358) ([0f78bccaea](https://github.com/Devolutions/sspi-rs/commit/0f78bccaea7ac5620f83de68d3559f212262c789))
16+
17+
### <!-- 4 -->Bug Fixes
18+
19+
- Kerberos authentication and encryption for RPC and RDP (#372) ([442dfc1382](https://github.com/Devolutions/sspi-rs/commit/442dfc1382033f6f81bb4cd021cca7318cce224e))
20+
921
## [[0.15.1](https://github.com/Devolutions/sspi-rs/compare/sspi-v0.15.0...sspi-v0.15.1)] - 2025-02-04
1022

1123
### <!-- 1 -->Features

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sspi"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
edition = "2021"
55
readme = "README.md"
66
license = "MIT OR Apache-2.0"
@@ -28,7 +28,7 @@ exclude = [
2828
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
2929

3030
[workspace.dependencies]
31-
uuid = { version = "1.14", default-features = false }
31+
uuid = { version = "1.15", default-features = false }
3232
tracing = { version = "0.1", default-features = false }
3333
bitflags = "2.8"
3434
rand = "0.8"
@@ -123,7 +123,7 @@ async-recursion = "1.1"
123123

124124
[target.'cfg(windows)'.dependencies]
125125
winreg = "0.55"
126-
windows = { version = "0.59", features = [ "Win32_Foundation", "Win32_NetworkManagement_Dns"] }
126+
windows = { version = "0.60", features = [ "Win32_Foundation", "Win32_NetworkManagement_Dns"] }
127127
windows-sys = { workspace = true, features = ["Win32_Security_Cryptography", "Win32_Foundation"] }
128128

129129
[target.'cfg(target_arch = "wasm32")'.dependencies]

crates/dpapi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ p521 = { version = "0.13", features = ["ecdh"] }
4545
p256 = { version = "0.13", features = ["ecdh"] }
4646
p384 = { version = "0.13", features = ["ecdh"] }
4747
concat-kdf = { version = "0.1", features = ["std"] }
48-
typenum = "1.17"
48+
typenum = "1.18"
4949
aes-kw = { version = "0.2", features = ["std"] }
5050
aes-gcm = { version = "0.10", features = ["std"] }
5151
url = "2.5"

0 commit comments

Comments
 (0)