Skip to content

Commit

Permalink
Bump the version to 2.0.0-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
leadpony committed Feb 2, 2020
1 parent 6dca31b commit ac64812
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 6 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
### Changed
* Change the JSON-P API to 2.0.0-RC1
* The API namespace was changed from `javax.json` to `jakarta.json`.
* Update the version of Jakarta JSON Processing API to 2.0.0-RC1.

## 1.5.0 - 2019-11-23
### Added
Expand Down
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![Build Status](https://travis-ci.org/leadpony/jsonp-test-suite.svg?branch=master)](https://travis-ci.org/leadpony/jsonp-test-suite)
[![Release](https://jitpack.io/v/org.leadpony/jsonp-test-suite.svg)](https://jitpack.io/#org.leadpony/jsonp-test-suite)

This project provides a set of tests for implementations of [Java API for JSON Processing (JSR 374)].
This project provides a set of tests for implementations of [Jakarta JSON Processing API] (JSON-P).

## Project Goals

Expand Down Expand Up @@ -91,10 +91,21 @@ mvn test -P test-with-joy
```

## Copyright Notice
Copyright © 2019-2020 JSON-P Test Suite Authors. This software is licensed under [Apache License, Versions 2.0][Apache 2.0 License].
Copyright 2019-2020 the original author or authors. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this product except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

[Apache 2.0 License]: https://www.apache.org/licenses/LICENSE-2.0
[Java API for JSON Processing (JSR 374)]: https://eclipse-ee4j.github.io/jsonp/
[Jakarta JSON Processing API]: https://eclipse-ee4j.github.io/jsonp/
[Jakarta JSON Processing]: https://eclipse-ee4j.github.io/jsonp/
[Apache Johnzon]: https://johnzon.apache.org/
[Joy]: https://github.com/leadpony/joy
Expand Down
16 changes: 15 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.leadpony</groupId>
<artifactId>jsonp-test-suite</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0-RC1</version>
<packaging>jar</packaging>

<name>JSON-P Test Suite</name>
Expand Down Expand Up @@ -64,6 +64,20 @@
</dependencies>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory></directory>
<includes>
<include>LICENSE</include>
<include>LICENSE-*</include>
<include>NOTICE</include>
</includes>
<targetPath>${project.build.outputDirectory}/META-INF</targetPath>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
Expand Down

0 comments on commit ac64812

Please sign in to comment.