Skip to content

Commit

Permalink
Fixed version 1.0.1, added release notes. Tagged release.
Browse files Browse the repository at this point in the history
  • Loading branch information
atsticks committed Feb 15, 2016
1 parent bd3c894 commit 1176507
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
7 changes: 7 additions & 0 deletions README.md
Expand Up @@ -12,6 +12,13 @@ This is the API module of JSR 354 licenced under
See also:
http://javamoney.java.net

Release Notes
-------------

- *1.0* API as defined by JSR 354 Spec.
- *1.0.1* API as defined by JSR 354 Spec (Fix: building Java 7 API with Java 7)


[![Maven Central](https://maven-badges.herokuapp.com/maven-central/javax.money/money-api/badge.svg)](https://maven-badges.herokuapp.com/maven-central/javax.money/money-api)
[![Build Status](https://api.travis-ci.org/JavaMoney/jsr354-api.png?branch=master)](https://travis-ci.org/JavaMoney/jsr354-api)
[![Coverage Status](https://coveralls.io/repos/JavaMoney/jsr354-api/badge.svg?branch=master)](https://coveralls.io/r/JavaMoney/jsr354-api?branch=master)
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -15,7 +15,7 @@
<artifactId>money-api</artifactId>
<packaging>bundle</packaging>

<version>1.1-SNAPSHOT</version>
<version>1.0.1</version>
<name>JSR 354 (Money and Currency API)</name>
<url>http://java.net/projects/javamoney</url>
<inceptionYear>2012</inceptionYear>
Expand Down
8 changes: 8 additions & 0 deletions src/test/java/javax/money/AbstractQueryTest.java
Expand Up @@ -10,7 +10,14 @@

import org.testng.annotations.Test;

import javax.money.convert.CurrencyConversion;
import javax.money.convert.ExchangeRate;
import javax.money.convert.ExchangeRateProvider;
import javax.money.convert.MonetaryConversions;
import java.time.LocalDate;
import java.util.Collection;
import java.util.List;
import java.util.Locale;

import static org.testng.Assert.*;

Expand All @@ -20,6 +27,7 @@
@SuppressWarnings({"unchecked", "rawtypes"})
public class AbstractQueryTest {


private AbstractQueryBuilder<AbstractQueryBuilder, AbstractQuery> createBuilder() {
return new AbstractQueryBuilder() {
@Override
Expand Down

0 comments on commit 1176507

Please sign in to comment.