1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-27 17:22:57 +01:00

Bumping version to 0.2.0

This commit is contained in:
svartalf 2019-04-26 21:56:17 +03:00
parent 2de26a5906
commit cb158fbe8d
2 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
[package]
name = "actix-web-httpauth"
version = "0.1.0"
version = "0.2.0"
authors = ["svartalf <self@svartalf.info>"]
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" }