Skip to content

Commit

Permalink
Updated dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pwall567 committed Sep 25, 2023
1 parent f14ad84 commit da60347
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/).

## [2.5] - 2023-09-25
### Changed
- `pom.xml`: updated dependency versions

## [2.4] - 2023-07-31
### Changed
- `pom.xml`: updated dependency versions
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,25 +140,25 @@ in the test section of this project.

## Dependency Specification

The latest version of the library is 2.4, and it may be obtained from the Maven Central repository.
The latest version of the library is 2.5, and it may be obtained from the Maven Central repository.

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

Peter Wall

2023-07-31
2023-09-25
8 changes: 4 additions & 4 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>2.4</version>
<version>2.5</version>
<name>Kotlin YAML processor</name>
<packaging>jar</packaging>
<url>https://github.com/pwall567/kjson-yaml</url>
Expand Down Expand Up @@ -62,12 +62,12 @@
<dependency>
<groupId>io.kjson</groupId>
<artifactId>kjson-core</artifactId>
<version>5.9</version>
<version>5.10</version>
</dependency>
<dependency>
<groupId>io.kjson</groupId>
<artifactId>kjson-pointer</artifactId>
<version>5.0</version>
<version>5.1</version>
</dependency>
<dependency>
<groupId>net.pwall.text</groupId>
Expand Down Expand Up @@ -105,7 +105,7 @@
<dependency>
<groupId>net.pwall.json</groupId>
<artifactId>json-simple</artifactId>
<version>1.7.4</version>
<version>1.7.5</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit da60347

Please sign in to comment.