Skip to content

Commit

Permalink
Update documentation and changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
pdvrieze committed May 4, 2022
1 parent eeb9e9f commit ff63f45
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Changelog.md
@@ -1,5 +1,5 @@
# 0.84.2-SNAPSHOT
*(??, 202?)<br />*
# 0.84.2
*(May 4, 202?)<br />*
Features:
- Add `@XmlIgnoreWhitespace` annotation to allow not retaining whitespace with
an `@XmlValue` field of type `List<CompactFragment>`
Expand Down
18 changes: 9 additions & 9 deletions README.md
Expand Up @@ -57,41 +57,41 @@ repositories {
### Core
#### multiplatform
```
implementation("io.github.pdvrieze.xmlutil:core:0.84.1")
implementation("io.github.pdvrieze.xmlutil:core:0.84.2")
```
#### JVM -- uses the stax API not available on Android
```
implementation("io.github.pdvrieze.xmlutil:core-jvm:0.84.1")
implementation("io.github.pdvrieze.xmlutil:core-jvm:0.84.2")
```
#### Android -- Uses the android streaming library
```
implementation("io.github.pdvrieze.xmlutil:core-android:0.84.1")
implementation("io.github.pdvrieze.xmlutil:core-android:0.84.2")
```
#### JS -- Wraps DOM
```
implementation("io.github.pdvrieze.xmlutil:core-js:0.84.1")
implementation("io.github.pdvrieze.xmlutil:core-js:0.84.2")
```
### Serialization
#### multiplatform
```
implementation("io.github.pdvrieze.xmlutil:serialization:0.84.1")
implementation("io.github.pdvrieze.xmlutil:serialization:0.84.2")
```
#### JVM
```
implementation("io.github.pdvrieze.xmlutil:serialization-jvm:0.84.1")
implementation("io.github.pdvrieze.xmlutil:serialization-jvm:0.84.2")
```
#### Android
```
implementation("io.github.pdvrieze.xmlutil:serialization-android:0.84.1")
implementation("io.github.pdvrieze.xmlutil:serialization-android:0.84.2")
```
#### js
```
implementation("io.github.pdvrieze.xmlutil:serialization-js:0.84.1")
implementation("io.github.pdvrieze.xmlutil:serialization-js:0.84.2")
```

### Ktor
```groovy
implementation("io.github.pdvrieze.xmlutil:ktor:0.84.1")
implementation("io.github.pdvrieze.xmlutil:ktor:0.84.2")
```
This module provides simple ktor support for xml (de)serialization. To use
in your application use:
Expand Down

0 comments on commit ff63f45

Please sign in to comment.