Skip to content

Commit

Permalink
Bump the version to 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leadpony committed Jul 20, 2019
1 parent c54f857 commit 7a71afd
Show file tree
Hide file tree
Showing 23 changed files with 3,059 additions and 2,286 deletions.
6 changes: 2 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ 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
## 0.11.0 - 2019-07-20
### Added
- Tests for `JsonBuilderFactory`.
- More tests for `JsonGenerator`.
- More tests for `JsonPatch` and `JsonMergePatch`.
- More tests for `JsonParser.hasNext()`.

## 0.10.0 - 2019-07-19
### Added
Expand Down
45 changes: 43 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,52 @@ This project provides a set of tests for implementations of [Java API for JSON P

## JSON-P Test Suite

### Test Results
### Latest Test Results

[JSON-P Test Suite Reports] shows the latest test results of the following JSON-P implementations.
* [Reference Implementation]
* [Apache Johnzon]

### Using as a Test Dependency

The jar-packaged artifact of this test suite is available from [JitPack] repository.

```xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.leadpony</groupId>
<artifactId>jsonp-test-suite</artifactId>
<version>0.10.0</version>
<scope>test</scope>
</dependency>
</dependencies>
```
The test suite can be run by using Maven Surefire Plugin.

```xml
<plguins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<dependenciesToScan>
<dependency>org.leadpony:jsonp-test-suite</dependency>
</dependenciesToScan>
<excludes>
<exclude />
</excludes>
</configuration>
</plugin>
</plguins>
```

### How to Build

The following tools are required to build and run the artifacts.
Expand Down Expand Up @@ -44,4 +84,5 @@ Copyright &copy; 2019 JSON-P Test Suite Authors. This software is licensed under
[Reference Implementation]: https://eclipse-ee4j.github.io/jsonp/
[Apache Maven]: https://maven.apache.org/
[Apache Johnzon]: https://johnzon.apache.org/
[JSON-P Test Suite Reports]: https://leadpony.github.io/jsonp-test-suite/test-suite/project-reports.html
[JSON-P Test Suite Reports]: https://leadpony.github.io/jsonp-test-suite/project-reports.html
[JitPack]: https://jitpack.io/#org.leadpony/jsonp-test-suite
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion docs/test-suite/index.html → docs/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; url=https://leadpony.github.io/jsonp-test-suite/test-suite/project-reports.html" />
<meta http-equiv="refresh" content="0; url=https://leadpony.github.io/jsonp-test-suite/project-reports.html" />
</head>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<div id="breadcrumbs">
<div class="xleft">
<span id="publishDate">Last Published: 2019-07-20</span>
&nbsp;| <span id="projectVersion">Version: 0.10.0</span>
&nbsp;| <span id="projectVersion">Version: 0.11.0</span>
</div>
<div class="xright"><a href="./" title="JSON-P Test Suite">JSON-P Test Suite</a> </div>
<div class="clear">
Expand Down
Loading

0 comments on commit 7a71afd

Please sign in to comment.