Skip to content

Commit

Permalink
Prepare for 0.84.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
pdvrieze committed Jan 11, 2022
1 parent 86d2584 commit 7d8204b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,41 +57,41 @@ repositories {
### Core
#### multiplatform
```
implementation("io.github.pdvrieze.xmlutil:core:0.84.0-RC1")
implementation("io.github.pdvrieze.xmlutil:core:0.84.0")
```
#### JVM -- uses the stax API not available on Android
```
implementation("io.github.pdvrieze.xmlutil:core-jvm:0.84.0-RC1")
implementation("io.github.pdvrieze.xmlutil:core-jvm:0.84.0")
```
#### Android -- Uses the android streaming library
```
implementation("io.github.pdvrieze.xmlutil:core-android:0.84.0-RC1")
implementation("io.github.pdvrieze.xmlutil:core-android:0.84.0")
```
#### JS -- Wraps DOM
```
implementation("io.github.pdvrieze.xmlutil:core-js:0.84.0-RC1")
implementation("io.github.pdvrieze.xmlutil:core-js:0.84.0")
```
### Serialization
#### multiplatform
```
implementation("io.github.pdvrieze.xmlutil:serialization:0.84.0-RC1")
implementation("io.github.pdvrieze.xmlutil:serialization:0.84.0")
```
#### JVM
```
implementation("io.github.pdvrieze.xmlutil:serialization-jvm:0.84.0-RC1")
implementation("io.github.pdvrieze.xmlutil:serialization-jvm:0.84.0")
```
#### Android
```
implementation("io.github.pdvrieze.xmlutil:serialization-android:0.84.0-RC1")
implementation("io.github.pdvrieze.xmlutil:serialization-android:0.84.0")
```
#### js
```
implementation("io.github.pdvrieze.xmlutil:serialization-js:0.84.0-RC1")
implementation("io.github.pdvrieze.xmlutil:serialization-js:0.84.0")
```

### Ktor
```groovy
implementation("io.github.pdvrieze.xmlutil:ktor:0.84.0-RC1")
implementation("io.github.pdvrieze.xmlutil:ktor:0.84.0")
```
This module provides simple ktor support for xml (de)serialization. To use
in your application use:
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jupiterVersion=5.2.0
argJvmDefault=-Xjvm-default=all
androidTarget=28
validatorVersion=0.8.0
xmlutil_version=0.84.0-RC2-SNAPSHOT
xmlutil_core_version=0.84.0-RC2-SNAPSHOT
xmlutil_serial_version=0.84.0-RC2-SNAPSHOT
xmlutil_util_version=0.84.0-RC2-SNAPSHOT
xmlutil_version=0.84.0
xmlutil_core_version=0.84.0
xmlutil_serial_version=0.84.0
xmlutil_util_version=0.84.0
xmlutil_versiondesc=All the small features
kotlin.code.style=official
woodstoxVersion=6.2.6
Expand Down

0 comments on commit 7d8204b

Please sign in to comment.