From 66701943d9af645f7d980050ec28ff2cde4d723c Mon Sep 17 00:00:00 2001 From: Peter Wall Date: Thu, 27 Oct 2022 22:37:52 +1100 Subject: [PATCH] Updated dependency versions --- CHANGELOG.md | 4 ++++ README.md | 12 ++++++------ pom.xml | 6 +++--- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1912165..b2722e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). +## [1.10] - 2022-10-27 +### Changed +- `pom.xml`: updated dependency versions + ## [1.9] - 2022-10-16 ### Changed - `pom.xml`: updated dependency versions diff --git a/README.md b/README.md index d026200..640fee9 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ For example, to retrieve the `description` property of the `info` section of an val file = File("path.to.swagger.file") val yamlDocument = YAML.parse(file) val pointer = JSONPointer("/info/description") - val description = pointer.find(yamlDocument.rootNode) + val description = yamlDocument.rootNode[pointer] ``` ## Implemented Subset @@ -56,25 +56,25 @@ Also, the parser may not yet meet the specification in all respects, even for th ## Dependency Specification -The latest version of the library is 1.9, and it may be obtained from the Maven Central repository. +The latest version of the library is 1.10, and it may be obtained from the Maven Central repository. ### Maven ```xml io.kjson kjson-yaml - 1.9 + 1.10 ``` ### Gradle ```groovy - implementation 'io.kjson:kjson-yaml:1.9' + implementation 'io.kjson:kjson-yaml:1.10' ``` ### Gradle (kts) ```kotlin - implementation("io.kjson:kjson-yaml:1.9") + implementation("io.kjson:kjson-yaml:1.10") ``` Peter Wall -2022-10-16 +2022-10-27 diff --git a/pom.xml b/pom.xml index 1d52204..672562c 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 kjson-yaml - 1.9 + 1.10 Kotlin YAML processor jar https://github.com/pwall567/kjson-yaml @@ -64,7 +64,7 @@ io.kjson kjson-pointer - 2.3 + 2.4 net.pwall.text @@ -79,7 +79,7 @@ net.pwall.log log-front-kotlin - 5.0 + 5.1.2 org.jetbrains.kotlin