Skip to content

Commit

Permalink
Updated dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pwall567 committed Dec 12, 2023
1 parent 852c678 commit 846510a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 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/).

## [0.43] - 2023-12-12
### Changed
- `pom.xml`: updated dependency versions

## [0.42] - 2023-09-27
### Changed
- `Parser`: fixed bug in `$ref`
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,25 +254,25 @@ More documentation to follow.

## Dependency Specification

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

### Maven
```xml
<dependency>
<groupId>net.pwall.json</groupId>
<artifactId>json-kotlin-schema</artifactId>
<version>0.42</version>
<version>0.43</version>
</dependency>
```
### Gradle
```groovy
implementation 'net.pwall.json:json-kotlin-schema:0.42'
implementation 'net.pwall.json:json-kotlin-schema:0.43'
```
### Gradle (kts)
```kotlin
implementation("net.pwall.json:json-kotlin-schema:0.42")
implementation("net.pwall.json:json-kotlin-schema:0.43")
```

Peter Wall

2023-09-27
2023-12-12
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.pwall.json</groupId>
<artifactId>json-kotlin-schema</artifactId>
<version>0.42</version>
<version>0.43</version>
<name>Kotlin implementation of JSON Schema (Draft-07)</name>
<packaging>jar</packaging>
<url>https://github.com/pwall567/json-kotlin-schema</url>
Expand Down Expand Up @@ -63,12 +63,12 @@
<dependency>
<groupId>net.pwall.util</groupId>
<artifactId>pipelines</artifactId>
<version>5.0</version>
<version>5.2</version>
</dependency>
<dependency>
<groupId>net.pwall.json</groupId>
<artifactId>json-pointer</artifactId>
<version>2.4</version>
<version>2.5</version>
</dependency>
<dependency>
<groupId>net.pwall.json</groupId>
Expand All @@ -83,7 +83,7 @@
<dependency>
<groupId>net.pwall.yaml</groupId>
<artifactId>yaml-simple</artifactId>
<version>1.15</version>
<version>1.16</version>
</dependency>
<dependency>
<groupId>net.pwall.yaml</groupId>
Expand Down Expand Up @@ -111,7 +111,7 @@
<dependency>
<groupId>net.pwall.json</groupId>
<artifactId>json-kotlin</artifactId>
<version>4.8</version>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 846510a

Please sign in to comment.