Skip to content

Commit

Permalink
Version bump; updates changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jqno committed Nov 18, 2022
1 parent cc17ab0 commit 31431d7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.11.1] - 2022-11-18
### Added
- Verifies `Map.Entry`'s extended `hashCode` contract. ([Issue 603](https://github.com/jqno/equalsverifier/issues/603); thanks scordio!)

## [3.11] - 2022-11-02
### Added
- Allow filtering `forPackage()` based on a superclass: it only tests only subclasses of the given class. Note: it is recursive, and the superclass itself is NOT included! ([Issue 706](https://github.com/jqno/equalsverifier/issues/706))
Expand Down Expand Up @@ -867,8 +871,9 @@ Please don't use version 1.3; [it's a broken release](https://jqno.nl/post/2013/
## [0.1] - 2009-06-01
You can now use EqualsVerifier!

[Unreleased]: https://github.com/jqno/equalsverifier/compare/equalsverifier-3.11...HEAD
[Unreleased]: https://github.com/jqno/equalsverifier/compare/equalsverifier-3.11.1...HEAD

[3.11.1]: https://github.com/jqno/equalsverifier/compare/equalsverifier-3.11...equalsverifier-3.11.1
[3.11]: https://github.com/jqno/equalsverifier/compare/equalsverifier-3.10.1...equalsverifier-3.11

[3.10.1]: https://github.com/jqno/equalsverifier/compare/equalsverifier-3.10...equalsverifier-3.10.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ EqualsVerifier's Maven coordinates are:
<dependency>
<groupId>nl.jqno.equalsverifier</groupId>
<artifactId>equalsverifier</artifactId>
<version>3.11</version>
<version>3.11.1</version>
<scope>test</scope>
</dependency>
```
Expand Down
4 changes: 2 additions & 2 deletions docs/_includes/maven
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<dependency>
<groupId>nl.jqno.equalsverifier</groupId>
<artifactId>equalsverifier</artifactId>
<version>3.11</version>
<version>3.11.1</version>
<scope>test</scope>
</dependency>
{% endhighlight %}
Expand All @@ -13,7 +13,7 @@ or, for a 'fat' jar with no transitive dependencies:
<dependency>
<groupId>nl.jqno.equalsverifier</groupId>
<artifactId>equalsverifier-nodep</artifactId>
<version>3.11</version>
<version>3.11.1</version>
<scope>test</scope>
</dependency>
{% endhighlight %}

0 comments on commit 31431d7

Please sign in to comment.