diff --git a/CHANGELOG.md b/CHANGELOG.md index f73d52f..ecfa218 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 5c5360e..8627f1b 100644 --- a/README.md +++ b/README.md @@ -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 @@ -19,14 +19,14 @@ Add the dependency to your project: com.vdurmont semver4j - 1.0.0 + 1.0.1 ``` #### Using gradle ```xml -compile 'com.vdurmont:semver4j:1.0.0' +compile 'com.vdurmont:semver4j:1.0.1' ``` ## Usage @@ -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 diff --git a/pom.xml b/pom.xml index c35956a..bd13a83 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.vdurmont semver4j - 1.0.0 + 1.0.1 jar semver4j