Skip to content

Commit

Permalink
update versions to release
Browse files Browse the repository at this point in the history
  • Loading branch information
bratkartoffel committed May 6, 2021
1 parent ad595d0 commit 79b8f11
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 15 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

### [4.4.2] (unreleased)
### [unreleased]
* no changes yet

### [4.4.2] (2021-05-06)
* (all) Dependencies upgraded to latest
* (all) Fixes "Found WebSecurityConfigurerAdapter as well as SecurityFilterChain"-error (#32)

Expand Down Expand Up @@ -119,7 +122,8 @@
* Initial release to github and maven central


[4.4.2]: https://github.com/bratkartoffel/security-jwt/compare/4.4.1...develop
[unreleased]: https://github.com/bratkartoffel/security-jwt/compare/4.4.2...develop
[4.4.2]: https://github.com/bratkartoffel/security-jwt/compare/4.4.1...4.4.2
[4.4.1]: https://github.com/bratkartoffel/security-jwt/compare/4.4.0...4.4.1
[4.4.0]: https://github.com/bratkartoffel/security-jwt/compare/4.3.0...4.4.0
[4.3.0]: https://github.com/bratkartoffel/security-jwt/compare/4.2.0...4.3.0
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ The default configuration should be sufficient for the most use cases.
<dependency>
<groupId>eu.fraho.spring</groupId>
<artifactId>security-jwt-base</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</dependency>
<!-- or -->
<dependency>
<groupId>eu.fraho.spring</groupId>
<artifactId>security-jwt-base-spring-boot-starter</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</dependency>
</dependencies>
```
Expand All @@ -60,27 +60,27 @@ When you want to add refresh token support, then choose one of the following dep
<dependency>
<groupId>eu.fraho.spring</groupId>
<artifactId>security-jwt-internal</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</dependency>
<dependency>
<groupId>eu.fraho.spring</groupId>
<artifactId>security-jwt-memcache</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</dependency>
<dependency>
<groupId>eu.fraho.spring</groupId>
<artifactId>security-jwt-hibernate</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</dependency>
<dependency>
<groupId>eu.fraho.spring</groupId>
<artifactId>security-jwt-redis</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</dependency>
<dependency>
<groupId>eu.fraho.spring</groupId>
<artifactId>security-jwt-files</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</dependency>
</dependencies>
```
Expand Down
2 changes: 1 addition & 1 deletion files/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This module adds support for storing refresh tokens within an simple json docume
<dependency>
<groupId>eu.fraho.spring</groupId>
<artifactId>security-jwt-files</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion hibernate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ for rows you have to regularly cleanup the token table, e.g. by using a cronjob.
<dependency>
<groupId>eu.fraho.spring</groupId>
<artifactId>security-jwt-hibernate</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion internal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This module adds support for storing refresh tokens within an in-memory storage.
<dependency>
<groupId>eu.fraho.spring</groupId>
<artifactId>security-jwt-internal</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion memcache/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Please note that the memcache-plugin needs an external memcached server.
<dependency>
<groupId>eu.fraho.spring</groupId>
<artifactId>security-jwt-memcache</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion redis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Please note that the redis-plugin needs an external redisd server.
<dependency>
<groupId>eu.fraho.spring</groupId>
<artifactId>security-jwt-redis</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.4.2-SNAPSHOT
4.4.2

0 comments on commit 79b8f11

Please sign in to comment.