Skip to content

Commit 0c87892

Browse files
committed
Small fixes and prep for 0.12.1
1 parent b487f29 commit 0c87892

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## v0.12.0-beta.1, 2025-09-07
1+
## v0.12.1, 2025-09-11
22

33
* [breaking change] Compiling with Rustls now requires explicit
44
selection of a crypto provider. Using the "tls-rustls" flag by
@@ -11,7 +11,7 @@
1111
favor of `ldap_unescape()`.
1212

1313
* Add basic NTLM authentication support. Username and cleartext
14-
password must be provided. Sing/seal on a non-TLS connection are
14+
password must be provided. Sign/seal on a non-TLS connection are
1515
not supported. On a TLS connection, a channel binding token will
1616
be sent to the server if possible.
1717

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ edition = "2024"
1313

1414
[package.metadata.docs.rs]
1515
default-features = false
16-
features = ["sync", "tls", "gssapi"]
16+
features = ["sync", "tls", "gssapi", "ntlm"]
1717
rustdoc-args = ["--cfg", "docsrs"]
1818

1919
[dependencies]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ See the "Compile-time features" section for details.
1111
### Version notices
1212

1313
The 0.12 branch contains basic NTLM support, removes deprecated functions, and updates
14-
the depnedencies and documentation. The earliest Rust version which can be used with NTLM
14+
the dependencies and documentation. The earliest Rust version which can be used with NTLM
1515
is 1.85.0; without NTLM, 1.82.0 will work. The only breaking changes are the use of feature
1616
flags when building with Rustls and the removal of the deprecated `ldap_str_unescape()`
1717
function.
@@ -23,7 +23,7 @@ using GSSAPI and compiling with Rust 1.78.0 or later, upgrade to 0.11.5.
2323

2424
API reference:
2525

26-
- [Version 0.12.0-beta](https://docs.rs/ldap3/0.12.0-beta.2/ldap3/)
26+
- [Version 0.12.x](https://docs.rs/ldap3/0.12.1/ldap3/)
2727

2828
- [Version 0.11.x](https://docs.rs/ldap3/0.11.5/ldap3/)
2929

@@ -44,7 +44,7 @@ Add this to your `Cargo.toml`:
4444

4545
```toml
4646
[dependencies.ldap3]
47-
version = "0.12.0-beta"
47+
version = "0.12.1"
4848
```
4949

5050
The library can be used either synchronously or asynchronously. The aim is to

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! ```toml
88
//! [dependencies.ldap3]
9-
//! version = "0.12.0-beta"
9+
//! version = "0.12.1"
1010
//! ```
1111
//!
1212
//! ## Summary

0 commit comments

Comments
 (0)