Skip to content

Commit

Permalink
Update the readme/changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
pdvrieze committed Jun 13, 2024
1 parent 1906097 commit 6f7dae7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
12 changes: 12 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 0.90.0 2.0 will go
*(June 13, 2024)
Changes:
- The core module no longer automatically includes Android/Jvm "native"
parsers by default, but uses the platform independent implementation.
The Android/Jvm native parsers are available by including "core-jvm"
and "core-android" packages. Note that serialization-jvm and
serialization-android do so already.
- There is a coreCompat package that provides the original setup as
direct replacement for core. This is a temporary package that will
be removed at 1.0 release.

# 0.90.0-RC3
- Fix issues with dependencies in new layout (#209) - XMPCore now
builds/resolves.
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,19 @@ repositories {
```

### Core
It should be noted that the JVM and Android packages are no longer part
of the multiplatform publication (they are combined into a `jvmCommon`)
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")
```
#### JVM – uses the stax API _not available_ on Android
#### **Optional** JVM – uses the stax API _not available_ on Android
```
implementation("io.github.pdvrieze.xmlutil:core-jvm:0.90.0-RC3")
```
#### Android – Uses the android streaming library
#### **Optional** Android – Uses the android streaming library
```
implementation("io.github.pdvrieze.xmlutil:core-android:0.90.0-RC3")
```
Expand Down

0 comments on commit 6f7dae7

Please sign in to comment.