Skip to content

Commit

Permalink
Release 1.0.0-rc.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lbalmaceda committed Jun 13, 2017
1 parent c9df3fc commit 5c3d8c7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## [1.0.0-rc.3](https://github.com/auth0/auth0-spring-security-api/tree/1.0.0-rc.3) (2017-06-13)
[Full Changelog](https://github.com/auth0/auth0-spring-security-api/compare/1.0.0-rc.2...1.0.0-rc.3)

**Changed**
- Use java-jwt version 3.2.0 [\#34](https://github.com/auth0/auth0-spring-security-api/pull/34) ([lbalmaceda](https://github.com/lbalmaceda))
- Use java-jwt version 3.1.0 [\#30](https://github.com/auth0/auth0-spring-security-api/pull/30) ([pacey](https://github.com/pacey))

## [1.0.0-rc.2](https://github.com/auth0/auth0-spring-security-api/tree/1.0.0-rc.2) (2016-12-21)
[Full Changelog](https://github.com/auth0/auth0-spring-security-api/compare/1.0.0-rc.1...1.0.0-rc.2)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ Get Auth0 Spring Security API using Maven:
<dependency>
<groupId>com.auth0</groupId>
<artifactId>auth0-spring-security-api</artifactId>
<version>1.0.0-rc.2</version>
<version>1.0.0-rc.3</version>
</dependency>
```

or Gradle:

```gradle
compile 'com.auth0:auth0-spring-security-api:1.0.0-rc.2'
compile 'com.auth0:auth0-spring-security-api:1.0.0-rc.3'
```

## Usage

Inside a `WebSecurityConfigurerAdapter` you can configure your api to only accept `RS256` signed JWTs
Inside a `WebSecurityConfigurerAdapter` you can configure your api to only accept `RS256` signed JWTs

```java
@EnableWebSecurity
Expand Down

0 comments on commit 5c3d8c7

Please sign in to comment.