Skip to content

Commit

Permalink
Bump version to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leadpony committed Jan 23, 2021
1 parent 1479206 commit 72b7aac
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 11 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
leadpony <https://github.com/leadpony>
Davide Angelocola <https://github.com/dfa1>
Todd O'Bryan <https://github.com/toddobryan>
Thiago Henrique Hüpner <https://github.com/Thihup>
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ 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.1.0 - 2021-01-24
### Changed
- `JsonPointer.add()` now can replace the value at root location with given array/object, regardless of the original type. This is a requirement from the TCK.

### Fixed
- `JsonObject.getBoolean()` and `JsonObject.isNull()` now correctly throws NPE if there exists no property for the specified key. (PR #12, #13 both are authored by @Thihup)
- `JsonParserFactory.createParser(InputStream)` now correctly throws `JsonException` if character encoding cannot be determined automatically. (Issue #10 reported by @Thihup)
- Fixed a bug that was causing JSON Patch move operation on nonexistent value not to throw `JsonException`, if the source path is the same as the target path. (Issue #11 reported by @Thihup)

## 2.0.0 - 2020-10-29
### Changed
- Updated the Jakarta API to 2.0.0.
Expand Down
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Joy
Copyright 2019-2020 the original author or authors. All rights reserved.
Copyright 2019-2021 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.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ For using this version, the following 2 dependencies neeed to be added in your `
<dependency>
<groupId>org.leadpony.joy</groupId>
<artifactId>joy-classic</artifactId>
<version>2.0.0</version>
<version>2.1.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</version>
<version>2.1.0</version>
<scope>runtime</scope>
</dependency>
```
Expand Down Expand Up @@ -119,7 +119,7 @@ There are other implementations compatible with this software.
* [Apache Johnzon]

## Copyright Notice
Copyright 2019-2020 the original author or authors. All rights reserved.
Copyright 2019-2021 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.
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.1.0-SNAPSHOT</version>
<version>2.1.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.1.0-SNAPSHOT</version>
<version>2.1.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.1.0-SNAPSHOT</version>
<version>2.1.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.1.0-SNAPSHOT</version>
<version>2.1.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.1.0-SNAPSHOT</version>
<version>2.1.0</version>
</parent>

<artifactId>joy-yaml</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion 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.1.0-SNAPSHOT</version>
<version>2.1.0</version>
<packaging>pom</packaging>
<name>org.leadpony.joy.parent</name>

Expand Down
2 changes: 1 addition & 1 deletion tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.leadpony.joy</groupId>
<artifactId>joy-parent</artifactId>
<version>2.1.0-SNAPSHOT</version>
<version>2.1.0</version>
</parent>

<artifactId>tck</artifactId>
Expand Down

0 comments on commit 72b7aac

Please sign in to comment.