Skip to content

Commit

Permalink
Release v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vdurmont committed Aug 16, 2019
1 parent eac4330 commit 2e72f80
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 3.0.0

- Drop java 6 support
- Add `withSuffix()` and `withBuild()` fluent API (thanks @punkstarman)
- Add pretty string representations for `Range` and `Requirement` (thanks @joschi)
- Add `equals()` and `hashCode()` methods for `Range` and `Requirement` (thanks @joschi)
- Exclude build number from comparison (thanks @astraia)
- Fix `isSatisfiedBy` for loosely built requirements (thanks @sschuberth)

## 2.2.0

This is all @sschuberth huge thanks to him!
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ Add the dependency to your project:
<dependency>
<groupId>com.vdurmont</groupId>
<artifactId>semver4j</artifactId>
<version>2.2.0</version>
<version>3.0.0</version>
</dependency>
```

#### Using gradle

```xml
compile 'com.vdurmont:semver4j:2.2.0'
compile 'com.vdurmont:semver4j:3.0.0'
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.vdurmont</groupId>
<artifactId>semver4j</artifactId>
<version>2.2.0</version>
<version>3.0.0</version>
<packaging>jar</packaging>

<name>semver4j</name>
Expand Down

0 comments on commit 2e72f80

Please sign in to comment.