Skip to content

Commit

Permalink
Mark release 0.86.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pdvrieze committed May 2, 2023
1 parent 7e701b4 commit f41d2e3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions Changelog.md
@@ -1,4 +1,4 @@
# 0.85.1-SNAPSHOT – Go in chunks
# 0.86.0 – Go in chunks
Features:
- Preliminary (partial) support for chunked decoding/Chunked Decoder ()
- Use kotlinx.serialization 1.5.0
Expand All @@ -7,7 +7,7 @@ Features:
they will still be handled.
- Implement a FileReader and FileWriter (and streams) for native to allow
native writing of files.
- Update to Kotlin 1.8.20
- Update to Kotlin 1.8.21
- Deprecate the ktor module (in favour of ktor's own xml integration module).
Note that that module still uses xmlutil, it just provides its own xml access
code.
Expand Down
16 changes: 8 additions & 8 deletions README.md
Expand Up @@ -79,36 +79,36 @@ repositories {
### Core
#### multiplatform
```
implementation("io.github.pdvrieze.xmlutil:core:0.85.0")
implementation("io.github.pdvrieze.xmlutil:core:0.86.0")
```
#### JVM -- uses the stax API _not available_ on Android
```
implementation("io.github.pdvrieze.xmlutil:core-jvm:0.85.0")
implementation("io.github.pdvrieze.xmlutil:core-jvm:0.86.0")
```
#### Android -- Uses the android streaming library
```
implementation("io.github.pdvrieze.xmlutil:core-android:0.85.0")
implementation("io.github.pdvrieze.xmlutil:core-android:0.86.0")
```
#### JS -- Wraps DOM
```
implementation("io.github.pdvrieze.xmlutil:core-js:0.85.0")
implementation("io.github.pdvrieze.xmlutil:core-js:0.86.0")
```
### Serialization
#### multiplatform
```
implementation("io.github.pdvrieze.xmlutil:serialization:0.85.0")
implementation("io.github.pdvrieze.xmlutil:serialization:0.86.0")
```
#### JVM
```
implementation("io.github.pdvrieze.xmlutil:serialization-jvm:0.85.0")
implementation("io.github.pdvrieze.xmlutil:serialization-jvm:0.86.0")
```
#### Android
```
implementation("io.github.pdvrieze.xmlutil:serialization-android:0.85.0")
implementation("io.github.pdvrieze.xmlutil:serialization-android:0.86.0")
```
#### js
```
implementation("io.github.pdvrieze.xmlutil:serialization-js:0.85.0")
implementation("io.github.pdvrieze.xmlutil:serialization-js:0.86.0")
```

### Ktor
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
@@ -1,9 +1,9 @@
org.gradle.jvmargs=-XX:MaxMetaspaceSize=768m -Xmx2048M
kotlin.mpp.stability.nowarn=true
xmlutil_version=0.85.1-SNAPSHOT
xmlutil_core_version=0.85.1-SNAPSHOT
xmlutil_serial_version=0.85.1-SNAPSHOT
xmlutil_util_version=0.85.1-SNAPSHOT
xmlutil_version=0.86.0
xmlutil_core_version=0.86.0
xmlutil_serial_version=0.86.0
xmlutil_util_version=0.86.0
xmlutil_versiondesc=
kotlin.code.style=official
native.deploy=
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Expand Up @@ -4,11 +4,11 @@ junit5-jupiter = "5.9.2"
kotlinx-serialization = "1.5.0"
kotlin = "1.8.21"
dokka = "1.7.20"
binaryValidator = "0.13.0"
woodstox = "6.2.6"
binaryValidator = "0.13.1"
woodstox = "6.5.1"

[libraries]
logback-classic = "ch.qos.logback:logback-classic:1.2.10"
logback-classic = "ch.qos.logback:logback-classic:1.4.7"
woodstox = { module = "com.fasterxml.woodstox:woodstox-core", version.ref="woodstox" }
kxml2 = "net.sf.kxml:kxml2:2.3.0"

Expand Down

0 comments on commit f41d2e3

Please sign in to comment.