Skip to content

Commit

Permalink
Updated dependency version
Browse files Browse the repository at this point in the history
  • Loading branch information
pwall567 committed Aug 18, 2024
1 parent 4dddde2 commit 7094aab
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 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/).

## [3.2] - 2024-08-19
### Changed
- `pom.xml`: updated dependency version

## [3.1] - 2024-08-06
### Changed
- `pom.xml`: updated dependency version
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -350,25 +350,25 @@ For example:

## Dependency Specification

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

### Maven
```xml
<dependency>
<groupId>io.kjson</groupId>
<artifactId>mustache-k</artifactId>
<version>3.1</version>
<version>3.2</version>
</dependency>
```
### Gradle
```groovy
implementation 'io.kjson:mustache-k:3.1'
implementation 'io.kjson:mustache-k:3.2'
```
### Gradle (kts)
```kotlin
implementation("io.kjson:mustache-k:3.1")
implementation("io.kjson:mustache-k:3.2")
```

Peter Wall

2024-08-06
2024-08-19
4 changes: 2 additions & 2 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>mustache-k</artifactId>
<version>3.1</version>
<version>3.2</version>
<name>Mustache template processor for Kotlin</name>
<packaging>jar</packaging>
<url>https://github.com/pwall567/mustache-k</url>
Expand Down Expand Up @@ -62,7 +62,7 @@
<dependency>
<groupId>io.kjson</groupId>
<artifactId>kjson-core</artifactId>
<version>9.0</version>
<version>9.1</version>
</dependency>
<dependency>
<groupId>net.pwall.util</groupId>
Expand Down

0 comments on commit 7094aab

Please sign in to comment.