Skip to content

Commit

Permalink
Bump version to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leadpony committed Oct 29, 2020
1 parent 2e12ee2 commit e41aa3d
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 18 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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).

## 2.0.0 - 2020-10-29
### Changed
- Updated the Jakarta API to 2.0.0.

## 2.0.0-RC2 - 2020-04-26
### Added
- Added a new JSON-P provider `joy-yaml` which can parse YAML documents with the help of [snakeyaml-engine](https://bitbucket.org/asomov/snakeyaml-engine). This artifact can be used as a substitute for the basic provider `joy-classic`. `JsonParser` and `JsonReader` provided by the new provider
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ For using this version, the following 2 dependencies neeed to be added in your `
<dependency>
<groupId>jakarta.json</groupId>
<artifactId>jakarta.json-api</artifactId>
<version>2.0.0-RC2</version>
<version>2.0.0</version>
</dependency>

<dependency>
<groupId>org.leadpony.joy</groupId>
<artifactId>joy-classic</artifactId>
<version>2.0.0-RC2</version>
<version>2.0.0</version>
<scope>runtime</scope>
</dependency>
```
Expand Down Expand Up @@ -87,7 +87,7 @@ All you need to do for parsing/reading YAML documents is switching the implement
<dependency>
<groupId>org.leadpony.joy</groupId>
<artifactId>joy-yaml</artifactId>
<version>2.0.0-RC2</version>
<version>2.0.0</version>
<scope>runtime</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion joy-classic-tests/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>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
</parent>

<artifactId>joy-classic-tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion joy-classic/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>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
</parent>

<artifactId>joy-classic</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion joy-core/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>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
</parent>

<artifactId>joy-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion joy-yaml-tests/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>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
</parent>

<artifactId>joy-yaml-tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion joy-yaml/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>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
</parent>

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

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

Expand All @@ -26,8 +26,8 @@
<properties>
<maven.compiler.release>8</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jsonp.version>2.0.0-RC2</jsonp.version>
<junit.jupiter.version>5.6.2</junit.jupiter.version>
<jsonp.version>2.0.0</jsonp.version>
<junit.jupiter.version>5.7.0</junit.jupiter.version>
</properties>

<repositories>
Expand Down Expand Up @@ -57,12 +57,12 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.13.2</version>
<version>3.18.0</version>
</dependency>
<dependency>
<groupId>org.leadpony</groupId>
<artifactId>jsonp-test-suite</artifactId>
<version>2.0.0-RC2</version>
<version>2.0.0</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down Expand Up @@ -101,12 +101,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
<configuration>
<release>9</release>
<encoding>UTF-8</encoding>
Expand All @@ -130,12 +130,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -149,7 +149,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<version>3.0.0-M5</version>
<configuration>
<argLine>
-Duser.language=en
Expand Down

0 comments on commit e41aa3d

Please sign in to comment.