Skip to content

Commit

Permalink
Bump version to 2.0.0-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
leadpony committed Apr 5, 2020
1 parent 944dce3 commit 3098aa7
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +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).

## Unreleased
## 2.0.0-RC1 - 2020-04-05
### Changed
* The API namespace was changed from `javax.json` to `jakarta.json`.
- The API package was renamed from `javax.json` to `jakarta.json`.
- Update the version of Jakarta JSON Processing API to 2.0.0-RC2.

## 1.3.0 - 2020-02-01
### Changed
Expand Down
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.6</version>
<version>2.0.0-RC2</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.3.0</version>
<version>2.0.0-RC1</version>
<scope>runtime</scope>
</dependency>
```
Expand Down
7 changes: 4 additions & 3 deletions checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@

<module name="Translation"/>

<module name="LineLength">
<property name="max" value="120" />
</module>

<module name="TreeWalker">

<!-- Checks for Javadoc comments. -->
Expand Down Expand Up @@ -63,9 +67,6 @@

<!-- Checks for Size Violations. -->
<!-- See http://checkstyle.sf.net/config_sizes.html -->
<module name="LineLength">
<property name="max" value="120" />
</module>
<module name="MethodLength"/>
<module name="ParameterNumber"/>

Expand Down
2 changes: 1 addition & 1 deletion joy-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-RC1</version>
</parent>

<artifactId>joy-tests</artifactId>
Expand Down
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>2.0.0-SNAPSHOT</version>
<version>2.0.0-RC1</version>
</parent>

<artifactId>joy</artifactId>
Expand Down
6 changes: 3 additions & 3 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-RC1</version>
<packaging>pom</packaging>
<name>org.leadpony.joy-parent</name>

Expand All @@ -23,7 +23,7 @@
<properties>
<maven.compiler.release>9</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jsonp.version>2.0.0-RC1</jsonp.version>
<jsonp.version>2.0.0-RC2</jsonp.version>
<junit.jupiter.version>5.5.1</junit.jupiter.version>
</properties>

Expand Down Expand Up @@ -70,7 +70,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>
<configuration>
<configLocation>../checkstyle.xml</configLocation>
<excludes>**/module-info.java</excludes>
Expand Down

0 comments on commit 3098aa7

Please sign in to comment.