From f54598c7e4815bc29852be7217f384e9b21b4966 Mon Sep 17 00:00:00 2001 From: Nikhil Benesch Date: Wed, 8 Jul 2020 22:05:45 -0400 Subject: [PATCH] sasl2-sys: prepare v0.1.12 --- CHANGELOG.md | 6 ++++++ README.md | 4 ++-- sasl2-sys/Cargo.toml | 2 +- sasl2-sys/src/lib.rs | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc5da73..30fea1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. +## [0.1.12] - 2020-07-08 + +* Introduce the `plain` feature to enable the PLAIN authentication method via + the `--enable-plain` configure option. + ## [0.1.11] - 2020-07-02 * When the `gssapi-vendored` feature is enabled, don't link against libresolv if @@ -91,6 +96,7 @@ Initial release. [0.1.9]: https://github.com/MaterializeInc/rust-sasl/compare/v0.1.8...v0.1.9 [0.1.10]: https://github.com/MaterializeInc/rust-sasl/compare/v0.1.9...v0.1.10 [0.1.11]: https://github.com/MaterializeInc/rust-sasl/compare/v0.1.10...v0.1.11 +[0.1.12]: https://github.com/MaterializeInc/rust-sasl/compare/v0.1.11...v0.1.12 [Keep a Changelog]: https://keepachangelog.com/en/1.0.0/ [Semantic Versioning]: https://semver.org/spec/v2.0.0.html diff --git a/README.md b/README.md index 89e120a..4fdc993 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ ```toml # Cargo.toml [dependencies] -sasl2-sys = "0.1.11" +sasl2-sys = "0.1.12" ``` [Cyrus SASL]: https://www.cyrusimap.org/sasl/ -[docs]: https://docs.rs/sasl2-sys/0.1.11/sasl2-sys +[docs]: https://docs.rs/sasl2-sys/0.1.12/sasl2-sys diff --git a/sasl2-sys/Cargo.toml b/sasl2-sys/Cargo.toml index b7ee6df..f37f0d3 100644 --- a/sasl2-sys/Cargo.toml +++ b/sasl2-sys/Cargo.toml @@ -7,7 +7,7 @@ documentation = "https://docs.rs/sasl2-sys" repository = "https://github.com/MaterializeInc/rust-sasl" license = "Apache-2.0" categories = ["external-ffi-bindings"] -version = "0.1.11" +version = "0.1.12" edition = "2018" links = "sasl2" diff --git a/sasl2-sys/src/lib.rs b/sasl2-sys/src/lib.rs index ead9d25..a0e9db3 100644 --- a/sasl2-sys/src/lib.rs +++ b/sasl2-sys/src/lib.rs @@ -14,7 +14,7 @@ // limitations under the License. #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] -#![doc(html_root_url = "https://docs.rs/sasl2-sys/0.1.11")] +#![doc(html_root_url = "https://docs.rs/sasl2-sys/0.1.12")] //! Bindings to Cyrus SASL. //!