Skip to content

Commit 563f42c

Browse files
committed
Announce 1.12
Hieu Nguyen (10): Missed an OPERATION_NAME replace in CopyOperation Add omit? operation and refactor packages Removing the JsonPatchOperationFactory and just using TypeInfo annotation mixins for jackson deserialization/serialization Remove annotations and instead introduce a ExtendedJsonPatch and ExtendedJsonPatchOperation Add factory methods for mappers that can deserialize standard and extended JSON patch operations Remove ExtendedJsonPatchOperation Remove JsonSubTypes annotations on JsonPatchOperation (because we are using registerSubtypes) Code review changes Creating a Standard and Extended JsonPatchFactory that houses the ObjectMapper Set version to 1.12 hnguyen08 (3): Merge pull request java-json-tools#2 from hnguyen08/omit_merged Merge pull request java-json-tools#3 from hnguyen08/omit_optional_operation Merge pull request java-json-tools#6 from hnguyen08/remove_factories_and_support_deserialization Add missing notes for versions 1.10, 1.11, 1.12
1 parent 964a20b commit 563f42c

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Its features are:
2222

2323
## Versions
2424

25-
The current version is **1.9**. See file `RELEASE-NOTES.md` for details.
25+
The current version is **1.12**. See file `RELEASE-NOTES.md` for details.
2626

2727
## Using it in your project
2828

RELEASE-NOTES.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 1.12
2+
3+
* Introduce "omit?" operation
4+
* Refactor json-patch factories
5+
6+
## 1.11
7+
8+
* Introduce "omit" operation
9+
10+
## 1.10
11+
12+
* Update build files
13+
114
## 1.9
215

316
* Completely new JSON diff implementation; less smart than the previous one but

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ apply(plugin: "idea");
2525
apply(plugin: "eclipse");
2626

2727
group = "com.box";
28-
version = "1.12";
28+
version = "1.13-SNAPSHOT";
2929
sourceCompatibility = "1.6";
3030
targetCompatibility = "1.6"; // defaults to sourceCompatibility
3131

0 commit comments

Comments
 (0)