Skip to content

Commit

Permalink
Merge branch 'release/0.0.3'
Browse files Browse the repository at this point in the history
Release: jregions 0.0.3
Code new: Add common "value" interfaces. (tickets: #1)
Code new: Add missing float and BigDecimal generators and tests. (tickets: #4)
Code new: Add type conversion methods. (tickets: #3)
Code new: Allow areas to be treated as area sizes. (tickets: #5)
Code new: Add methods to return sizes from areas. (tickets: #2)
  • Loading branch information
io7m committed Mar 10, 2017
2 parents 8629873 + a567413 commit 164ad02
Show file tree
Hide file tree
Showing 62 changed files with 2,721 additions and 587 deletions.
35 changes: 35 additions & 0 deletions README-CHANGES.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,41 @@
<c:changelog xmlns:c="http://schemas.io7m.com/changelog/2.0.0">
<c:project>jregions</c:project>

<c:release c:ticket-system="com.github.io7m.jregions">
<c:date>2017-03-09</c:date>
<c:version>0.0.3</c:version>
<c:item>
<c:date>2017-03-08</c:date>
<c:type-code-new/>
<c:ticket>1</c:ticket>
<c:summary>Add common "value" interfaces.</c:summary>
</c:item>
<c:item>
<c:date>2017-03-08</c:date>
<c:type-code-new/>
<c:ticket>4</c:ticket>
<c:summary>Add missing float and BigDecimal generators and tests.</c:summary>
</c:item>
<c:item>
<c:date>2017-03-08</c:date>
<c:type-code-new/>
<c:ticket>3</c:ticket>
<c:summary>Add type conversion methods.</c:summary>
</c:item>
<c:item>
<c:date>2017-03-08</c:date>
<c:type-code-new/>
<c:ticket>5</c:ticket>
<c:summary>Allow areas to be treated as area sizes.</c:summary>
</c:item>
<c:item>
<c:date>2017-03-09</c:date>
<c:type-code-new/>
<c:ticket>2</c:ticket>
<c:summary>Add methods to return sizes from areas.</c:summary>
</c:item>
</c:release>

<c:release c:ticket-system="com.github.io7m.jregions">
<c:date>2017-03-08</c:date>
<c:version>0.0.2</c:version>
Expand Down
2 changes: 1 addition & 1 deletion com.io7m.jregions.checkstyle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>com.io7m.jregions</groupId>
<artifactId>com.io7m.jregions</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
</parent>

<artifactId>com.io7m.jregions.checkstyle</artifactId>
Expand Down
15 changes: 14 additions & 1 deletion com.io7m.jregions.core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>com.io7m.jregions</groupId>
<artifactId>com.io7m.jregions</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
</parent>

<artifactId>com.io7m.jregions.core</artifactId>
Expand Down Expand Up @@ -67,6 +67,7 @@
<properties>
<scalarType>java.math.BigDecimal</scalarType>
<areaType>PAreaBD</areaType>
<areaSizeType>com.io7m.jregions.core.parameterized.sizes.PAreaSizeBD</areaSizeType>
<className>PAreasBD</className>
<splitXType>PAreaXSplitBD</splitXType>
<splitYType>PAreaYSplitBD</splitYType>
Expand All @@ -92,6 +93,7 @@
<properties>
<scalarType>java.math.BigInteger</scalarType>
<areaType>PAreaBI</areaType>
<areaSizeType>com.io7m.jregions.core.parameterized.sizes.PAreaSizeBI</areaSizeType>
<className>PAreasBI</className>
<splitXType>PAreaXSplitBI</splitXType>
<splitYType>PAreaYSplitBI</splitYType>
Expand All @@ -117,6 +119,7 @@
<properties>
<scalarType>int</scalarType>
<areaType>PAreaI</areaType>
<areaSizeType>com.io7m.jregions.core.parameterized.sizes.PAreaSizeI</areaSizeType>
<className>PAreasI</className>
<splitXType>PAreaXSplitI</splitXType>
<splitYType>PAreaYSplitI</splitYType>
Expand All @@ -142,6 +145,7 @@
<properties>
<scalarType>float</scalarType>
<areaType>PAreaF</areaType>
<areaSizeType>com.io7m.jregions.core.parameterized.sizes.PAreaSizeF</areaSizeType>
<className>PAreasF</className>
<splitXType>PAreaXSplitF</splitXType>
<splitYType>PAreaYSplitF</splitYType>
Expand All @@ -167,6 +171,7 @@
<properties>
<scalarType>double</scalarType>
<areaType>PAreaD</areaType>
<areaSizeType>com.io7m.jregions.core.parameterized.sizes.PAreaSizeD</areaSizeType>
<className>PAreasD</className>
<splitXType>PAreaXSplitD</splitXType>
<splitYType>PAreaYSplitD</splitYType>
Expand All @@ -192,6 +197,7 @@
<properties>
<scalarType>long</scalarType>
<areaType>PAreaL</areaType>
<areaSizeType>com.io7m.jregions.core.parameterized.sizes.PAreaSizeL</areaSizeType>
<className>PAreasL</className>
<splitXType>PAreaXSplitL</splitXType>
<splitYType>PAreaYSplitL</splitYType>
Expand Down Expand Up @@ -219,6 +225,7 @@
<properties>
<scalarType>java.math.BigDecimal</scalarType>
<areaType>AreaBD</areaType>
<areaSizeType>com.io7m.jregions.core.unparameterized.sizes.AreaSizeBD</areaSizeType>
<className>AreasBD</className>
<splitXType>AreaXSplitBD</splitXType>
<splitYType>AreaYSplitBD</splitYType>
Expand All @@ -244,6 +251,7 @@
<properties>
<scalarType>java.math.BigInteger</scalarType>
<areaType>AreaBI</areaType>
<areaSizeType>com.io7m.jregions.core.unparameterized.sizes.AreaSizeBI</areaSizeType>
<className>AreasBI</className>
<splitXType>AreaXSplitBI</splitXType>
<splitYType>AreaYSplitBI</splitYType>
Expand All @@ -269,6 +277,7 @@
<properties>
<scalarType>int</scalarType>
<areaType>AreaI</areaType>
<areaSizeType>com.io7m.jregions.core.unparameterized.sizes.AreaSizeI</areaSizeType>
<className>AreasI</className>
<splitXType>AreaXSplitI</splitXType>
<splitYType>AreaYSplitI</splitYType>
Expand All @@ -294,6 +303,7 @@
<properties>
<scalarType>float</scalarType>
<areaType>AreaF</areaType>
<areaSizeType>com.io7m.jregions.core.unparameterized.sizes.AreaSizeF</areaSizeType>
<className>AreasF</className>
<splitXType>AreaXSplitF</splitXType>
<splitYType>AreaYSplitF</splitYType>
Expand All @@ -319,6 +329,7 @@
<properties>
<scalarType>double</scalarType>
<areaType>AreaD</areaType>
<areaSizeType>com.io7m.jregions.core.unparameterized.sizes.AreaSizeD</areaSizeType>
<className>AreasD</className>
<splitXType>AreaXSplitD</splitXType>
<splitYType>AreaYSplitD</splitYType>
Expand All @@ -344,6 +355,7 @@
<properties>
<scalarType>long</scalarType>
<areaType>AreaL</areaType>
<areaSizeType>com.io7m.jregions.core.unparameterized.sizes.AreaSizeL</areaSizeType>
<className>AreasL</className>
<splitXType>AreaXSplitL</splitXType>
<splitYType>AreaYSplitL</splitYType>
Expand Down Expand Up @@ -371,6 +383,7 @@
<instructions>
<Export-Package>
com.io7m.jregions.core,
com.io7m.jregions.core.conversions,
com.io7m.jregions.core.parameterized,
com.io7m.jregions.core.parameterized.areas,
com.io7m.jregions.core.parameterized.sizes,
Expand Down

0 comments on commit 164ad02

Please sign in to comment.