Skip to content

Commit

Permalink
chore: prepare v3.0.0-beta.3 release (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
DDtKey authored Oct 11, 2021
1 parent 12c7028 commit 972c983
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] - 2021-xx-xx
### Added
- Allow extractor to receive mutable requests [#17](https://github.com/DDtKey/actix-web-grants/pull/17)

### Changed


## [v3.0.0-beta.3] - 2021-10-11
### Added
- Allow extractor to receive mutable requests [#17](https://github.com/DDtKey/actix-web-grants/pull/17)
- How to use section to readme [#18](https://github.com/DDtKey/actix-web-grants/pull/18)

## [v3.0.0-beta.2] - 2021-08-11
### Changed
- Pull incoming changes from [v2.1.0]
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-web-grants"
version = "3.0.0-beta.2"
version = "3.0.0-beta.3"
authors = ["DDtKey <ddttkey@gmail.com>"]
description = "Extension for `actix-web` to validate user permissions"
repository = "https://github.com/DDtKey/actix-web-grants"
Expand All @@ -20,8 +20,8 @@ default = ["macro-check"]
macro-check = ["actix-grants-proc-macro"]

[dependencies]
actix-web = { version = "4.0.0-beta.8", default-features = false }
actix-grants-proc-macro = { path = "./proc-macro", version = "2.0.0-beta.2", optional = true }
actix-web = { version = "4.0.0-beta.9", default-features = false }
actix-grants-proc-macro = { path = "./proc-macro", version = "2.0.0-beta.3", optional = true }

[dev-dependencies]
actix-rt = "2"
Expand Down
2 changes: 1 addition & 1 deletion examples/jwt-httpauth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
actix-web = { version = "4.0.0-beta.8" }
actix-web = { version = "4.0.0-beta.9" }
actix-web-grants = { path = "../../" }
actix-web-httpauth = "0.6.0-beta.2"
jsonwebtoken = "7"
Expand Down
4 changes: 2 additions & 2 deletions proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-grants-proc-macro"
version = "2.0.0-beta.2"
version = "2.0.0-beta.3"
authors = ["DDtKey <ddttkey@gmail.com>"]
description = "A proc-macro way to validate user permissions for `actix-web-grants` crate."
repository = "https://github.com/DDtKey/actix-web-grants"
Expand All @@ -19,5 +19,5 @@ proc-macro2 = "1.0"
syn = { version = "1.0", features = ["full", "derive", "extra-traits"] }

[dev-dependencies]
actix-web = { version = "4.0.0-beta.8", default-features = false }
actix-web = { version = "4.0.0-beta.9", default-features = false }
actix-web-grants = { path = "../" }

0 comments on commit 972c983

Please sign in to comment.