Skip to content

Commit

Permalink
Updated dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pwall567 committed Oct 27, 2022
1 parent 24dc049 commit 6670194
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
<dependency>
<groupId>io.kjson</groupId>
<artifactId>kjson-yaml</artifactId>
<version>1.9</version>
<version>1.10</version>
</dependency>
```
### 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
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>kjson-yaml</artifactId>
<version>1.9</version>
<version>1.10</version>
<name>Kotlin YAML processor</name>
<packaging>jar</packaging>
<url>https://github.com/pwall567/kjson-yaml</url>
Expand Down Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>io.kjson</groupId>
<artifactId>kjson-pointer</artifactId>
<version>2.3</version>
<version>2.4</version>
</dependency>
<dependency>
<groupId>net.pwall.text</groupId>
Expand All @@ -79,7 +79,7 @@
<dependency>
<groupId>net.pwall.log</groupId>
<artifactId>log-front-kotlin</artifactId>
<version>5.0</version>
<version>5.1.2</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
Expand Down

0 comments on commit 6670194

Please sign in to comment.