Skip to content

Commit

Permalink
Update to 0.90.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
pdvrieze committed Jun 14, 2024
1 parent f89843d commit 805e46d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.90.1 Fix Android
- Fix android plugin dependency.

# 0.90.0 2.0 will go
*(June 13, 2024)
Changes:
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,19 +85,19 @@ package. The `JVM` and `Android` packages provide the native
implementations and depend on (publishing) the `jvmCommon` package.
#### multiplatform (will default to multiplatform implementation for JVM/Android)
```
implementation("io.github.pdvrieze.xmlutil:core:0.90.0")
implementation("io.github.pdvrieze.xmlutil:core:0.90.1")
```
#### **Optional** JVM – uses the stax API _not available_ on Android
```
implementation("io.github.pdvrieze.xmlutil:core-jvm:0.90.0-RC3")
implementation("io.github.pdvrieze.xmlutil:core-jvm:0.90.1-RC3")

This comment has been minimized.

Copy link
@ArtRoman

ArtRoman Jun 14, 2024

There is no 0.90.1-RC3, you should remove RC versions from readme

This comment has been minimized.

Copy link
@pdvrieze

pdvrieze Jun 18, 2024

Author Owner

Oops.

```
#### **Optional** Android – Uses the android streaming library
```
implementation("io.github.pdvrieze.xmlutil:core-android:0.90.0-RC3")
implementation("io.github.pdvrieze.xmlutil:core-android:0.90.1-RC3")
```
#### JS – Wraps DOM
```
implementation("io.github.pdvrieze.xmlutil:core-js:0.90.0-RC1")
implementation("io.github.pdvrieze.xmlutil:core-js:0.90.1-RC1")
```

#### Native
Expand All @@ -108,19 +108,19 @@ that mirrors the Java API)
### Serialization
#### multiplatform
```
implementation("io.github.pdvrieze.xmlutil:serialization:0.90.0")
implementation("io.github.pdvrieze.xmlutil:serialization:0.90.1")
```
#### JVM
```
implementation("io.github.pdvrieze.xmlutil:serialization-jvm:0.90.0")
implementation("io.github.pdvrieze.xmlutil:serialization-jvm:0.90.1")
```
#### Android
```
implementation("io.github.pdvrieze.xmlutil:serialization-android:0.90.0")
implementation("io.github.pdvrieze.xmlutil:serialization-android:0.90.1")
```
#### js
```
implementation("io.github.pdvrieze.xmlutil:serialization-js:0.90.0")
implementation("io.github.pdvrieze.xmlutil:serialization-js:0.90.1")
```

### -Ktor- (Deprecated)
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ kotlin = "2.0.0"
kotlinx-serialization = "1.7.0"
kxml2 = "2.3.0"
woodstox = "6.6.2"
xmlutil = "0.90.1-SNAPSHOT"
xmlutil = "0.90.1"

[libraries]
woodstox = { module = "com.fasterxml.woodstox:woodstox-core", version.ref = "woodstox" }
Expand Down

0 comments on commit 805e46d

Please sign in to comment.