From cb158fbe8daf55396c9528c13319eeddefa9ab09 Mon Sep 17 00:00:00 2001 From: svartalf Date: Fri, 26 Apr 2019 21:56:17 +0300 Subject: [PATCH] Bumping version to 0.2.0 --- CHANGELOG.md | 5 +++++ Cargo.toml | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4f5f77d3..734c338be 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](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [0.2.0] - 2019-04-26 +### Changed + - `actix-web` dependency is used without default features now ([#6](https://github.com/svartalf/actix-web-httpauth/pull/6)) + - `base64` dependency version was bumped to `0.10` + ## [0.1.0] - 2018-09-08 ### Changed - Update to `actix-web = "0.7"` version diff --git a/Cargo.toml b/Cargo.toml index 95a7a68cb..d0a388dff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web-httpauth" -version = "0.1.0" +version = "0.2.0" authors = ["svartalf "] description = "HTTP authentication schemes for actix-web" readme = "README.md" @@ -15,7 +15,7 @@ exclude = [".travis.yml", ".gitignore"] [dependencies] actix-web = { version = "0.7", default_features = false } bytes = "0.4" -base64 = "0.9" +base64 = "0.10" [features] default = [] @@ -23,3 +23,4 @@ nightly = [] [badges] travis-ci = { repository = "svartalf/actix-web-httpauth", branch = "master" } +maintenance = { status = "passively-maintained" }