Skip to content

Commit

Permalink
release RePlay 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asolntsev committed Mar 22, 2024
1 parent dc814f7 commit e460d7c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 8 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 2.4.0 (released 22.03.2024) - see https://github.com/replay-framework/replay/milestone/15?closed=1
* Upgrade to Java 17 (#356)
* #198 #290 Multi module app (#291)
* #327 remove Jamon dependency (#328)
* fix ClassCastException in RequestLogPlugin (#317)
* Bump netty from 4.1.104.Final to 4.1.108.Final
* Bump liquibase from 4.25.1 to 4.26.0 (#339)
* Bump groovy from 3.0.19 to 3.0.21
* Bump ECJ from 3.33.0 to 3.37.0 (#356)
* Bump FlyingSaucer from 9.3.2 to 9.7.1
* Bump commons-email from 1.5 to 1.6.0 (#310)
* Bump jackson from 2.16.0 to 2.17.0
* Bump slf4j from 2.0.9 to 2.0.12
* Bump commons-codec from 1.16.0 to 1.16.1 (#340)

## 2.3.1 (released 22.12.2023) - see https://github.com/replay-framework/replay/milestone/14?closed=1

* Move project from https://github.com/codeborne/replay to https://github.com/replay-framework/replay
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ JDK 17 (as we are stuck at Hibernate 5.6 which does not support JDK versions bey
You need to add RePlay dependencies to your build.gradle (or pom.xml):
```groovy
dependencies {
implementation 'io.github.replay-framework:framework:2.3.1'
implementation 'io.github.replay-framework:javanet:2.3.1' // you can replay "javanet" by "netty3" or "netty4"
implementation 'io.github.replay-framework:framework:2.4.0'
implementation 'io.github.replay-framework:javanet:2.4.0' // you can replay "javanet" by "netty3" or "netty4"
// Optionally:
implementation 'io.github.replay-framework:guice:2.3.1'
implementation 'io.github.replay-framework:fastergt:2.3.1'
implementation 'io.github.replay-framework:liquibase:2.3.1'
implementation 'io.github.replay-framework:pdf:2.3.1'
implementation 'io.github.replay-framework:excel:2.3.1'
implementation 'io.github.replay-framework:guice:2.4.0'
implementation 'io.github.replay-framework:fastergt:2.4.0'
implementation 'io.github.replay-framework:liquibase:2.4.0'
implementation 'io.github.replay-framework:pdf:2.4.0'
implementation 'io.github.replay-framework:excel:2.4.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ext {
subprojects {

group='io.github.replay-framework'
version=project.properties['revision'] ?: '2.3.1'
version=project.properties['revision'] ?: '2.4.0'

apply plugin: 'java'
apply plugin: 'java-library'
Expand Down

0 comments on commit e460d7c

Please sign in to comment.