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 8, 2022
1 parent 5623780 commit 1a08481
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 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.7] - 2022-10-08
### Changed
- `pom.xml`: updated dependency versions

## [1.6] - 2022-06-24
### Changed
- `pom.xml`, `Parser`: switched to `log-front` 5.0, dropped `logback`
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
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.6, and it may be obtained from the Maven Central repository.
The latest version of the library is 1.7, and it may be obtained from the Maven Central repository.

### Maven
```xml
<dependency>
<groupId>io.kjson</groupId>
<artifactId>kjson-yaml</artifactId>
<version>1.6</version>
<version>1.7</version>
</dependency>
```
### Gradle
```groovy
implementation 'io.kjson:kjson-yaml:1.6'
implementation 'io.kjson:kjson-yaml:1.7'
```
### Gradle (kts)
```kotlin
implementation("io.kjson:kjson-yaml:1.6")
implementation("io.kjson:kjson-yaml:1.7")
```

Peter Wall

2022-06-24
2022-10-08
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.6</version>
<version>1.7</version>
<name>Kotlin YAML processor</name>
<packaging>jar</packaging>
<url>https://github.com/pwall567/kjson-yaml</url>
Expand Down Expand Up @@ -59,12 +59,12 @@
<dependency>
<groupId>io.kjson</groupId>
<artifactId>kjson-core</artifactId>
<version>3.0</version>
<version>4.0</version>
</dependency>
<dependency>
<groupId>io.kjson</groupId>
<artifactId>kjson-pointer</artifactId>
<version>1.9</version>
<version>2.0</version>
</dependency>
<dependency>
<groupId>net.pwall.text</groupId>
Expand Down

0 comments on commit 1a08481

Please sign in to comment.