Skip to content

Commit

Permalink
Bump the version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leadpony committed Sep 29, 2019
1 parent 9c973ad commit 260ac2e
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 1.2.0 - 2019-09-29
### Changed
- Update the JSON Processing API to version 1.1.6.

Expand Down
2 changes: 1 addition & 1 deletion NOTICE.md → NOTICE
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Copyright © 2019 the Joy Authors.
Copyright 2019 the Joy Authors.
This software is licensed under the Apache License, Versions 2.0.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ First, add the JSON-P API as a dependency to your `pom.xml`.
<dependency>
<groupId>jakarta.json</groupId>
<artifactId>jakarta.json-api</artifactId>
<version>1.1.5</version>
<version>1.1.6</version>
</dependency>
```

Expand All @@ -34,7 +34,7 @@ Next, add this software as an implementation of the API.
<dependency>
<groupId>org.leadpony.joy</groupId>
<artifactId>joy</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
<scope>runtime</scope>
</dependency>
```
Expand Down
6 changes: 5 additions & 1 deletion joy-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,17 @@
<parent>
<groupId>org.leadpony.joy</groupId>
<artifactId>joy-parent</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.0</version>
</parent>

<artifactId>joy-tests</artifactId>
<packaging>jar</packaging>
<name>org.leadpony.joy-tests</name>

<description>
Joy is a JSON processing library based on the JSON Processing API (JSR 374).
</description>

<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion joy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.leadpony.joy</groupId>
<artifactId>joy-parent</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.0</version>
</parent>

<artifactId>joy</artifactId>
Expand Down
8 changes: 6 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@

<groupId>org.leadpony.joy</groupId>
<artifactId>joy-parent</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.0</version>
<packaging>pom</packaging>
<name>org.leadpony.joy-parent</name>

<description>
Joy is a JSON processing library based on the JSON Processing API (JSR 374).
</description>

<modules>
<module>joy</module>
<module>joy-tests</module>
Expand Down Expand Up @@ -55,7 +59,7 @@
<dependency>
<groupId>org.leadpony</groupId>
<artifactId>jsonp-test-suite</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit 260ac2e

Please sign in to comment.