diff --git a/CHANGELOG.md b/CHANGELOG.md index 82318d4..b0a3ef6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [15.1.0] - 2021-04-30 + +### Added +- scopes to verify endpoint + ## [15.0.0] - 2021-04-16 ### Added diff --git a/Cargo.lock b/Cargo.lock index 6ee3288..e6b8eb0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -543,7 +543,7 @@ dependencies = [ [[package]] name = "broker" -version = "15.0.0" +version = "15.1.0" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index b6b50d5..d70f1c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "broker" -version = "15.0.0" +version = "15.1.0" authors = ["Bevan Hunt "] edition = "2018" license = "MIT" diff --git a/src/main.rs b/src/main.rs index c25b607..4dfc1bf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -318,7 +318,7 @@ fn jwt_aud(scopes: Vec, exp: i64, username: String) -> Result, exp: i64, username: String) -> Result Result> {