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 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 0.1.0
----- -----

13
pom.xml
View file

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