diff --git a/CHANGELOG.md b/CHANGELOG.md index 82ff6c8cf..1e233fae3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## Unreleased +## [0.3.2] - 2019-07-19 +### Changed + - Middleware accepts any `Fn` as a validator function instead of `FnMut` ([#11](https://github.com/svartalf/actix-web-httpauth/pull/11)) + +## [0.3.1] - 2019-06-09 +### Fixed + - Multiple calls to the middleware would result in panic + +## [0.3.0] - 2019-06-05 +### Changed - Crate edition was changed to `2018`, same as `actix-web` - Depends on `actix-web = "^1.0"` version now - `WWWAuthenticate` header struct was renamed into `WwwAuthenticate` diff --git a/Cargo.toml b/Cargo.toml index 1f48b6bfc..39ba959ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web-httpauth" -version = "0.3.1" +version = "0.3.2" authors = ["svartalf "] description = "HTTP authentication schemes for actix-web" readme = "README.md"