Skip to content

Commit

Permalink
Prepare 1.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
vdurmont committed Aug 21, 2015
1 parent 36c5b79 commit 4b1a81f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## v1.0.1

* Fix a bug that prevented the usage of `Semver#statisfies(String)` with CocoaPods

## v1.0.0

* Add support for Cocoapods
* Add support for CocoaPods

## v0.2.0

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[![Coverage Status](https://coveralls.io/repos/vdurmont/semver4j/badge.svg?branch=master&service=github)](https://coveralls.io/github/vdurmont/semver4j?branch=master)
[![License Info](http://img.shields.io/badge/license-The%20MIT%20License-brightgreen.svg)](https://github.com/vdurmont/semver4j/blob/master/LICENSE.md)

**Semver4j** is a lightweight Java library that helps you handling versions. It follows the rules of the [semantic versioning](http://semver.org) specification and provides several versioning modes: strict, NPM, Cocoapods...
**Semver4j** is a lightweight Java library that helps you handling versions. It follows the rules of the [semantic versioning](http://semver.org) specification and provides several versioning modes: strict, NPM, CocoaPods...

## Installation

Expand All @@ -19,14 +19,14 @@ Add the dependency to your project:
<dependency>
<groupId>com.vdurmont</groupId>
<artifactId>semver4j</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
```

#### Using gradle

```xml
compile 'com.vdurmont:semver4j:1.0.0'
compile 'com.vdurmont:semver4j:1.0.1'
```

## Usage
Expand Down Expand Up @@ -142,7 +142,7 @@ semNPM.satisfies("1.1.*"); // false
semNPM.satisfies("~1.2.1"); // true
semNPM.satisfies("^1.1.1"); // true

// COCOAPODS mode (those are just examples, check Cocoapods documentation to see all the cases)
// COCOAPODS mode (those are just examples, check CocoaPods documentation to see all the cases)
Semver semPOD = new Semver("1.2.3", SemverType.COCOAPODS);
semPOD.satisfies("> 1.2.2"); // true
semPOD.satisfies("~> 1.2.1"); // true
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>1.0.0</version>
<version>1.0.1</version>
<packaging>jar</packaging>

<name>semver4j</name>
Expand Down

0 comments on commit 4b1a81f

Please sign in to comment.