Skip to content

Commit

Permalink
4.7 final
Browse files Browse the repository at this point in the history
  • Loading branch information
David Saff committed Jul 28, 2009
1 parent 23ffc6b commit a8629da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.xml
Expand Up @@ -5,7 +5,7 @@
<property name="src" value="src/main/java" />
<property name="target" location="target" />
<property name="bin" location="${target}/main" />
<property name="version" value="4.7-RC1" />
<property name="version" value="4.7" />
<property name="dist" value="junit${version}" />
<property name="versionfile" value="${src}/junit/runner/Version.java" />
<property name="zipfile" value="${dist}/${dist}.zip" />
Expand Down
4 changes: 3 additions & 1 deletion doc/ReleaseNotes4.7.txt
Expand Up @@ -178,7 +178,9 @@
### Matchers ###
- Due to typing incompatibilities, JUnit is still including the 1.1 release
of hamcrest. This is not a change from 4.6, but is a change from
pre-beta releases of 4.7.
pre-beta releases of 4.7. Due to this incompatibility, tests using
Hamcrest 1.2 must still use the MatcherAssert.assertThat method from
Hamcrest, not Assert.assertThat from JUnit.

### Docs ###
- Javadocs now link to online JDK javadocs (bug 2090230)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/junit/runner/Version.java
Expand Up @@ -9,7 +9,7 @@ private Version() {
}

public static String id() {
return "4.7-RC1";
return "4.7";
}

public static void main(String[] args) {
Expand Down

0 comments on commit a8629da

Please sign in to comment.