Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
pdvrieze committed Jul 5, 2023
1 parent b221a9a commit 6150785
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
3 changes: 2 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# 0.86.1-SNAPSHOT
# 0.86.1
*(July 5, 2023)<br />*
Features:
- Support detecting duplicate elements outside of list context #145. This
is not default behaviour as it is somewhat up to the serializer to deal
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,36 +79,36 @@ repositories {
### Core
#### multiplatform
```
implementation("io.github.pdvrieze.xmlutil:core:0.86.0")
implementation("io.github.pdvrieze.xmlutil:core:0.86.1")
```
#### JVM -- uses the stax API _not available_ on Android
```
implementation("io.github.pdvrieze.xmlutil:core-jvm:0.86.0")
implementation("io.github.pdvrieze.xmlutil:core-jvm:0.86.1")
```
#### Android -- Uses the android streaming library
```
implementation("io.github.pdvrieze.xmlutil:core-android:0.86.0")
implementation("io.github.pdvrieze.xmlutil:core-android:0.86.1")
```
#### JS -- Wraps DOM
```
implementation("io.github.pdvrieze.xmlutil:core-js:0.86.0")
implementation("io.github.pdvrieze.xmlutil:core-js:0.86.1")
```
### Serialization
#### multiplatform
```
implementation("io.github.pdvrieze.xmlutil:serialization:0.86.0")
implementation("io.github.pdvrieze.xmlutil:serialization:0.86.1")
```
#### JVM
```
implementation("io.github.pdvrieze.xmlutil:serialization-jvm:0.86.0")
implementation("io.github.pdvrieze.xmlutil:serialization-jvm:0.86.1")
```
#### Android
```
implementation("io.github.pdvrieze.xmlutil:serialization-android:0.86.0")
implementation("io.github.pdvrieze.xmlutil:serialization-android:0.86.1")
```
#### js
```
implementation("io.github.pdvrieze.xmlutil:serialization-js:0.86.0")
implementation("io.github.pdvrieze.xmlutil:serialization-js:0.86.1")
```

### Ktor
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
org.gradle.jvmargs=-XX:MaxMetaspaceSize=768m -Xmx2048M
kotlin.mpp.stability.nowarn=true
xmlutil_version=0.86.1-SNAPSHOT
xmlutil_core_version=0.86.1-SNAPSHOT
xmlutil_serial_version=0.86.1-SNAPSHOT
xmlutil_util_version=0.86.1-SNAPSHOT
xmlutil_version=0.86.1
xmlutil_core_version=0.86.1
xmlutil_serial_version=0.86.1
xmlutil_util_version=0.86.1
xmlutil_versiondesc=
kotlin.code.style=official
native.deploy=

0 comments on commit 6150785

Please sign in to comment.