Skip to content

Commit

Permalink
Move to version 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
henri-tremblay committed Oct 15, 2022
1 parent 76c00e8 commit 77b1a5a
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 11 deletions.
10 changes: 10 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,13 @@ Known issues:
* Running in OSGi doesn't work (#313)

All help is greatly appreciated.

Change log
----------
* Replace Cglib with Bytebuddy to support Java 9+ ([#300](https://github.com/easymock/easymock/pull/300))
* Fix core source-jar, added maven-source-plugin ([#283](https://github.com/easymock/easymock/pull/283))
* Upgrade to ASM 9.2 so that easymock can work with JDK18-EA #277 ([#278](https://github.com/easymock/easymock/pull/278))
* Upgrade to ASM 9.2 so that easymock can work with JDK18-EA ([#277](https://github.com/easymock/easymock/issues/277))
* Does not work with Java 17 ([#274](https://github.com/easymock/easymock/issues/274))
* Allow @Mock to get a default name from the variable being mocked ([#260](https://github.com/easymock/easymock/issues/260))
* Easymock doesn't work in Java 11 with --illegal-access=deny ([#235](https://github.com/easymock/easymock/issues/235))
2 changes: 1 addition & 1 deletion bench/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.easymock</groupId>
<artifactId>easymock-parent</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>

<artifactId>easymock-bench</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.easymock</groupId>
<artifactId>easymock-parent</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>

<artifactId>easymock</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.easymock</groupId>
<artifactId>easymock-parent</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
<packaging>pom</packaging>
<name>EasyMock Parent</name>
<url>http://easymock.org</url>
Expand Down
2 changes: 1 addition & 1 deletion test-android/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.easymock</groupId>
<artifactId>easymock-parent</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>

<artifactId>easymock-android-tck</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion test-deploy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.easymock</groupId>
<artifactId>easymock-parent</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>

<artifactId>easymock-test-deploy</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion test-integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.easymock</groupId>
<artifactId>easymock-parent</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>

<artifactId>easymock-test-integration</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion test-java8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.easymock</groupId>
<artifactId>easymock-parent</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>

<artifactId>easymock-test-java8</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion test-junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.easymock</groupId>
<artifactId>easymock-parent</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>

<artifactId>easymock-test-junit5</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion test-nodeps/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.easymock</groupId>
<artifactId>easymock-parent</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>

<artifactId>easymock-test-nodeps</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion test-osgi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.easymock</groupId>
<artifactId>easymock-parent</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>

<artifactId>easymock-test-osgi</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion test-testng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.easymock</groupId>
<artifactId>easymock-parent</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>

<artifactId>easymock-test-testng</artifactId>
Expand Down

0 comments on commit 77b1a5a

Please sign in to comment.