Skip to content

Commit 1176507

Browse files
committed
Fixed version 1.0.1, added release notes. Tagged release.
1 parent bd3c894 commit 1176507

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ This is the API module of JSR 354 licenced under
1212
See also:
1313
http://javamoney.java.net
1414

15+
Release Notes
16+
-------------
17+
18+
- *1.0* API as defined by JSR 354 Spec.
19+
- *1.0.1* API as defined by JSR 354 Spec (Fix: building Java 7 API with Java 7)
20+
21+
1522
[![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)
1623
[![Build Status](https://api.travis-ci.org/JavaMoney/jsr354-api.png?branch=master)](https://travis-ci.org/JavaMoney/jsr354-api)
1724
[![Coverage Status](https://coveralls.io/repos/JavaMoney/jsr354-api/badge.svg?branch=master)](https://coveralls.io/r/JavaMoney/jsr354-api?branch=master)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<artifactId>money-api</artifactId>
1616
<packaging>bundle</packaging>
1717

18-
<version>1.1-SNAPSHOT</version>
18+
<version>1.0.1</version>
1919
<name>JSR 354 (Money and Currency API)</name>
2020
<url>http://java.net/projects/javamoney</url>
2121
<inceptionYear>2012</inceptionYear>

src/test/java/javax/money/AbstractQueryTest.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,14 @@
1010

1111
import org.testng.annotations.Test;
1212

13+
import javax.money.convert.CurrencyConversion;
14+
import javax.money.convert.ExchangeRate;
15+
import javax.money.convert.ExchangeRateProvider;
16+
import javax.money.convert.MonetaryConversions;
17+
import java.time.LocalDate;
18+
import java.util.Collection;
1319
import java.util.List;
20+
import java.util.Locale;
1421

1522
import static org.testng.Assert.*;
1623

@@ -20,6 +27,7 @@
2027
@SuppressWarnings({"unchecked", "rawtypes"})
2128
public class AbstractQueryTest {
2229

30+
2331
private AbstractQueryBuilder<AbstractQueryBuilder, AbstractQuery> createBuilder() {
2432
return new AbstractQueryBuilder() {
2533
@Override

0 commit comments

Comments
 (0)