Prepare for 0.2.0 release

* Update CHANGELOG
* Use `kemitix-parent` 4.0.0
* Make dependency versions properties
This commit is contained in:
Paul Campbell 2017-10-19 19:38:15 +01:00
parent df7ef1c5c4
commit ccc0c91473
2 changed files with 17 additions and 4 deletions

View file

@ -1,6 +1,14 @@
CHANGELOG
=========
0.2.0
-----
* `TypeAlias.getValue()` is not `final`
* Added `TypeAlias.map()`
* `Mon.map()` and `Mon.flatMap()` are `final`
* Codacy Quality clean up
0.1.0
-----

13
pom.xml
View file

@ -7,22 +7,27 @@
<parent>
<groupId>net.kemitix</groupId>
<artifactId>kemitix-parent</artifactId>
<version>3.2.4</version>
<version>4.0.0</version>
</parent>
<artifactId>mon</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.0</version>
<properties>
<junit.version>4.12</junit.version>
<assertj-core.version>3.8.0</assertj-core.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.8.0</version>
<version>${assertj-core.version}</version>
<scope>test</scope>
</dependency>
</dependencies>