From cc057583a6d619f1757be57a43856092e0290a93 Mon Sep 17 00:00:00 2001 From: Stefan Oltmann Date: Mon, 28 Jul 2025 12:35:35 +0200 Subject: [PATCH 1/3] Dependency updates --- README.md | 2 +- build.gradle.kts | 27 ++++++++++++------------ gradle/wrapper/gradle-wrapper.properties | 2 +- 3 files changed, 15 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 6222425..96e45d4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # XMP Core for Kotlin Multiplatform -[![Kotlin](https://img.shields.io/badge/kotlin-2.1.21-blue.svg?logo=kotlin)](httpw://kotlinlang.org) +[![Kotlin](https://img.shields.io/badge/kotlin-2.2.0-blue.svg?logo=kotlin)](httpw://kotlinlang.org) ![JVM](https://img.shields.io/badge/-JVM-gray.svg?style=flat) ![Android](https://img.shields.io/badge/-Android-gray.svg?style=flat) ![iOS](https://img.shields.io/badge/-iOS-gray.svg?style=flat) diff --git a/build.gradle.kts b/build.gradle.kts index 4426f85..507d54d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,15 +1,16 @@ import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl +import org.jetbrains.kotlin.gradle.dsl.JvmTarget import org.jetbrains.kotlin.gradle.plugin.mpp.NativeBuildType import org.jetbrains.kotlin.gradle.plugin.mpp.apple.XCFramework plugins { - kotlin("multiplatform") version "2.1.21" + kotlin("multiplatform") version "2.2.0" id("com.android.library") version "8.9.2" id("io.gitlab.arturbosch.detekt") version "1.23.8" id("org.jetbrains.kotlinx.kover") version "0.9.1" id("com.asarkar.gradle.build-time-tracker") version "5.0.1" id("me.qoomon.git-versioning") version "6.4.4" - id("com.goncalossilva.resources") version "0.10.0" + id("com.goncalossilva.resources") version "0.10.1" id("com.github.ben-manes.versions") version "0.52.0" id("com.vanniktech.maven.publish") version "0.34.0" } @@ -22,7 +23,7 @@ repositories { val productName = "Ashampoo XMP Core" val xmlUtilVersion: String = "0.91.1" -val kotlinxIoVersion: String = "0.7.0" +val kotlinxIoVersion: String = "0.8.0" description = productName group = "com.ashampoo" @@ -75,10 +76,8 @@ kotlin { androidTarget { - compilations.all { - kotlinOptions { - jvmTarget = "11" - } + compilerOptions { + jvmTarget = JvmTarget.JVM_11 } publishLibraryVariants("release") @@ -257,7 +256,7 @@ android { namespace = "com.ashampoo.xmpcore" - compileSdk = 35 + compileSdk = 36 sourceSets["main"].res.srcDirs("src/commonMain/resources") @@ -304,25 +303,25 @@ mavenPublishing { name = productName description = "XMP Core for Kotlin Multiplatform" - url = "https://github.com/Ashampoo/xmpcore" + url = "https://github.com/Software-Rangers/xmpcore" licenses { license { name = "The BSD License" - url = "https://github.com/Ashampoo/xmpcore/blob/main/original_source/original_license.txt" + url = "https://github.com/Software-Rangers/xmpcore/blob/main/original_source/original_license.txt" } } developers { developer { - name = "Ashampoo GmbH & Co. KG" - url = "https://www.ashampoo.com/" + name = "Software Rangers GmbH" + url = "https://software-rangers.com/" } } scm { - url = "https://github.com/Ashampoo/xmpcore" - connection = "scm:git:git://github.com/Ashampoo/xmpcore.git" + url = "https://github.com/Software-Rangers/xmpcore" + connection = "scm:git:git://github.com/Software-Rangers/xmpcore.git" } } } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 3c44eb1..aa02b02 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip networkTimeout=10000 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists From 47c53a294d53d3f5b11f815982998259aad36553 Mon Sep 17 00:00:00 2001 From: Stefan Oltmann Date: Mon, 28 Jul 2025 12:46:32 +0200 Subject: [PATCH 2/3] Migrated to libs.versions.toml --- build.gradle.kts | 31 +++++++++++------------- gradle/libs.versions.toml | 51 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+), 17 deletions(-) create mode 100644 gradle/libs.versions.toml diff --git a/build.gradle.kts b/build.gradle.kts index 507d54d..b834ccc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,15 +4,15 @@ import org.jetbrains.kotlin.gradle.plugin.mpp.NativeBuildType import org.jetbrains.kotlin.gradle.plugin.mpp.apple.XCFramework plugins { - kotlin("multiplatform") version "2.2.0" - id("com.android.library") version "8.9.2" - id("io.gitlab.arturbosch.detekt") version "1.23.8" - id("org.jetbrains.kotlinx.kover") version "0.9.1" - id("com.asarkar.gradle.build-time-tracker") version "5.0.1" - id("me.qoomon.git-versioning") version "6.4.4" - id("com.goncalossilva.resources") version "0.10.1" - id("com.github.ben-manes.versions") version "0.52.0" - id("com.vanniktech.maven.publish") version "0.34.0" + alias(libs.plugins.kotlin.multiplatform) + alias(libs.plugins.android.library) + alias(libs.plugins.detekt) + alias(libs.plugins.kover) + alias(libs.plugins.build.time.tracker) + alias(libs.plugins.git.versioning) + alias(libs.plugins.resources) + alias(libs.plugins.gradle.versions) + alias(libs.plugins.maven.publish) } repositories { @@ -22,9 +22,6 @@ repositories { val productName = "Ashampoo XMP Core" -val xmlUtilVersion: String = "0.91.1" -val kotlinxIoVersion: String = "0.8.0" - description = productName group = "com.ashampoo" version = "0.0.0" @@ -67,7 +64,7 @@ kover { } dependencies { - detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.8") + detektPlugins(libs.detekt.formatting) } kotlin { @@ -129,7 +126,7 @@ kotlin { dependencies { /* Needed to parse XML and create a DOM Document */ - implementation("io.github.pdvrieze.xmlutil:core:$xmlUtilVersion") + implementation(libs.xmlutil.core) } } @@ -141,7 +138,7 @@ kotlin { implementation(kotlin("test")) /* Multiplatform file access */ - implementation("org.jetbrains.kotlinx:kotlinx-io-core:$kotlinxIoVersion") + implementation(libs.kotlinx.io.core) } } @@ -256,12 +253,12 @@ android { namespace = "com.ashampoo.xmpcore" - compileSdk = 36 + compileSdk = libs.versions.android.compile.sdk.get().toInt() sourceSets["main"].res.srcDirs("src/commonMain/resources") defaultConfig { - minSdk = 21 + minSdk = libs.versions.android.min.sdk.get().toInt() } compileOptions { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml new file mode 100644 index 0000000..d8a0ce0 --- /dev/null +++ b/gradle/libs.versions.toml @@ -0,0 +1,51 @@ +[versions] +# Kotlin and Android +kotlin = "2.2.0" +android-gradle-plugin = "8.9.2" +android-compile-sdk = "36" +android-min-sdk = "21" + +# Build and Analysis Tools +detekt = "1.23.8" +kover = "0.9.1" +build-time-tracker = "5.0.1" +git-versioning = "6.4.4" +gradle-versions = "0.52.0" +maven-publish = "0.34.0" + +# Resources +resources = "0.10.1" + +# Libraries +xmlutil = "0.91.1" +kotlinx-io = "0.8.0" + +[libraries] +# XML Processing +xmlutil-core = { module = "io.github.pdvrieze.xmlutil:core", version.ref = "xmlutil" } + +# Kotlin Extensions +kotlinx-io-core = { module = "org.jetbrains.kotlinx:kotlinx-io-core", version.ref = "kotlinx-io" } + +# Code Analysis +detekt-formatting = { module = "io.gitlab.arturbosch.detekt:detekt-formatting", version.ref = "detekt" } + +[plugins] +# Kotlin +kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } + +# Android +android-library = { id = "com.android.library", version.ref = "android-gradle-plugin" } + +# Code Analysis and Quality +detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" } +kover = { id = "org.jetbrains.kotlinx.kover", version.ref = "kover" } + +# Build Tools +build-time-tracker = { id = "com.asarkar.gradle.build-time-tracker", version.ref = "build-time-tracker" } +git-versioning = { id = "me.qoomon.git-versioning", version.ref = "git-versioning" } +gradle-versions = { id = "com.github.ben-manes.versions", version.ref = "gradle-versions" } + +# Resources and Publishing +resources = { id = "com.goncalossilva.resources", version.ref = "resources" } +maven-publish = { id = "com.vanniktech.maven.publish", version.ref = "maven-publish" } From c99be96532cebdf8c3d78ad9ef4152a6d1ab379c Mon Sep 17 00:00:00 2001 From: Stefan Oltmann Date: Mon, 28 Jul 2025 12:54:20 +0200 Subject: [PATCH 3/3] Increased version number --- README.md | 2 +- src/commonMain/kotlin/com/ashampoo/xmp/XMPVersionInfo.kt | 4 ++-- .../com/ashampoo/xmp/sample_100_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_100_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_101_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_101_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_102_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_102_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_103_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_103_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_104_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_104_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_105_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_105_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_106_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_106_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_107_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_107_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_108_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_108_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_109_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_109_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_10_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_10_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_11_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_11_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_12_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_12_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_13_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_13_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_14_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_14_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_15_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_15_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_16_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_16_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_17_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_17_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_18_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_18_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_19_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_19_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_1_formatted_canonical.xmp | 2 +- .../resources/com/ashampoo/xmp/sample_1_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_20_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_20_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_21_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_21_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_22_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_22_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_23_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_23_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_24_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_24_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_25_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_25_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_26_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_26_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_27_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_27_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_28_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_28_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_29_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_29_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_2_formatted_canonical.xmp | 2 +- .../resources/com/ashampoo/xmp/sample_2_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_30_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_30_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_31_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_31_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_32_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_32_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_33_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_33_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_34_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_34_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_35_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_35_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_36_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_36_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_37_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_37_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_38_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_38_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_39_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_39_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_3_formatted_canonical.xmp | 2 +- .../resources/com/ashampoo/xmp/sample_3_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_40_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_40_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_41_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_41_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_42_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_42_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_43_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_43_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_44_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_44_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_45_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_45_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_46_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_46_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_47_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_47_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_48_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_48_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_49_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_49_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_4_formatted_canonical.xmp | 2 +- .../resources/com/ashampoo/xmp/sample_4_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_50_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_50_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_51_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_51_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_52_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_52_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_53_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_53_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_54_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_54_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_55_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_55_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_56_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_56_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_57_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_57_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_58_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_58_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_59_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_59_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_5_formatted_canonical.xmp | 2 +- .../resources/com/ashampoo/xmp/sample_5_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_60_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_60_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_61_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_61_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_62_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_62_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_63_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_63_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_64_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_64_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_65_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_65_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_66_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_66_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_67_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_67_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_68_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_68_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_69_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_69_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_6_formatted_canonical.xmp | 2 +- .../resources/com/ashampoo/xmp/sample_6_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_70_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_70_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_71_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_71_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_72_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_72_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_73_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_73_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_74_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_74_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_75_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_75_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_76_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_76_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_77_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_77_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_78_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_78_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_79_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_79_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_7_formatted_canonical.xmp | 2 +- .../resources/com/ashampoo/xmp/sample_7_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_80_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_80_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_81_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_81_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_82_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_82_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_83_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_83_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_84_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_84_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_85_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_85_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_86_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_86_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_87_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_87_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_88_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_88_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_89_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_89_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_8_formatted_canonical.xmp | 2 +- .../resources/com/ashampoo/xmp/sample_8_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_90_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_90_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_91_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_91_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_92_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_92_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_93_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_93_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_94_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_94_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_95_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_95_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_96_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_96_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_97_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_97_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_98_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_98_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_99_formatted_canonical.xmp | 2 +- .../com/ashampoo/xmp/sample_99_formatted_compact.xmp | 2 +- .../com/ashampoo/xmp/sample_9_formatted_canonical.xmp | 2 +- .../resources/com/ashampoo/xmp/sample_9_formatted_compact.xmp | 2 +- 220 files changed, 221 insertions(+), 221 deletions(-) diff --git a/README.md b/README.md index 96e45d4..7592d33 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ It's part of [Ashampoo Photo Organizer](https://ashampoo.com/photo-organizer). ## Installation ``` -implementation("com.ashampoo:xmpcore:1.5.2") +implementation("com.ashampoo:xmpcore:1.6.0") ``` ## How to use diff --git a/src/commonMain/kotlin/com/ashampoo/xmp/XMPVersionInfo.kt b/src/commonMain/kotlin/com/ashampoo/xmp/XMPVersionInfo.kt index 512d434..514cd11 100644 --- a/src/commonMain/kotlin/com/ashampoo/xmp/XMPVersionInfo.kt +++ b/src/commonMain/kotlin/com/ashampoo/xmp/XMPVersionInfo.kt @@ -8,8 +8,8 @@ package com.ashampoo.xmp public object XMPVersionInfo { public const val MAJOR: Int = 1 - public const val MINOR: Int = 5 - public const val PATCH: Int = 2 + public const val MINOR: Int = 6 + public const val PATCH: Int = 0 public const val VERSION_MESSAGE: String = "Ashampoo XMP Core $MAJOR.$MINOR.$PATCH" diff --git a/src/commonTest/resources/com/ashampoo/xmp/sample_100_formatted_canonical.xmp b/src/commonTest/resources/com/ashampoo/xmp/sample_100_formatted_canonical.xmp index dc0ede9..1119b79 100644 --- a/src/commonTest/resources/com/ashampoo/xmp/sample_100_formatted_canonical.xmp +++ b/src/commonTest/resources/com/ashampoo/xmp/sample_100_formatted_canonical.xmp @@ -1,5 +1,5 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + diff --git a/src/commonTest/resources/com/ashampoo/xmp/sample_13_formatted_compact.xmp b/src/commonTest/resources/com/ashampoo/xmp/sample_13_formatted_compact.xmp index c63ae80..181bbd0 100644 --- a/src/commonTest/resources/com/ashampoo/xmp/sample_13_formatted_compact.xmp +++ b/src/commonTest/resources/com/ashampoo/xmp/sample_13_formatted_compact.xmp @@ -1,5 +1,5 @@ - + - + diff --git a/src/commonTest/resources/com/ashampoo/xmp/sample_14_formatted_compact.xmp b/src/commonTest/resources/com/ashampoo/xmp/sample_14_formatted_compact.xmp index 9abdf72..8c758af 100644 --- a/src/commonTest/resources/com/ashampoo/xmp/sample_14_formatted_compact.xmp +++ b/src/commonTest/resources/com/ashampoo/xmp/sample_14_formatted_compact.xmp @@ -1,5 +1,5 @@ - + - + diff --git a/src/commonTest/resources/com/ashampoo/xmp/sample_15_formatted_compact.xmp b/src/commonTest/resources/com/ashampoo/xmp/sample_15_formatted_compact.xmp index 9a22270..57a1cf1 100644 --- a/src/commonTest/resources/com/ashampoo/xmp/sample_15_formatted_compact.xmp +++ b/src/commonTest/resources/com/ashampoo/xmp/sample_15_formatted_compact.xmp @@ -1,5 +1,5 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + diff --git a/src/commonTest/resources/com/ashampoo/xmp/sample_31_formatted_compact.xmp b/src/commonTest/resources/com/ashampoo/xmp/sample_31_formatted_compact.xmp index 9abdf72..8c758af 100644 --- a/src/commonTest/resources/com/ashampoo/xmp/sample_31_formatted_compact.xmp +++ b/src/commonTest/resources/com/ashampoo/xmp/sample_31_formatted_compact.xmp @@ -1,5 +1,5 @@ - + - + - + - + - + - + diff --git a/src/commonTest/resources/com/ashampoo/xmp/sample_34_formatted_compact.xmp b/src/commonTest/resources/com/ashampoo/xmp/sample_34_formatted_compact.xmp index 9abdf72..8c758af 100644 --- a/src/commonTest/resources/com/ashampoo/xmp/sample_34_formatted_compact.xmp +++ b/src/commonTest/resources/com/ashampoo/xmp/sample_34_formatted_compact.xmp @@ -1,5 +1,5 @@ - + - + - + - + - + - + - + - + - + - + diff --git a/src/commonTest/resources/com/ashampoo/xmp/sample_39_formatted_compact.xmp b/src/commonTest/resources/com/ashampoo/xmp/sample_39_formatted_compact.xmp index c63ae80..181bbd0 100644 --- a/src/commonTest/resources/com/ashampoo/xmp/sample_39_formatted_compact.xmp +++ b/src/commonTest/resources/com/ashampoo/xmp/sample_39_formatted_compact.xmp @@ -1,5 +1,5 @@ - + - + - + - + - + - + diff --git a/src/commonTest/resources/com/ashampoo/xmp/sample_41_formatted_compact.xmp b/src/commonTest/resources/com/ashampoo/xmp/sample_41_formatted_compact.xmp index c63ae80..181bbd0 100644 --- a/src/commonTest/resources/com/ashampoo/xmp/sample_41_formatted_compact.xmp +++ b/src/commonTest/resources/com/ashampoo/xmp/sample_41_formatted_compact.xmp @@ -1,5 +1,5 @@ - + - + - + - + diff --git a/src/commonTest/resources/com/ashampoo/xmp/sample_43_formatted_compact.xmp b/src/commonTest/resources/com/ashampoo/xmp/sample_43_formatted_compact.xmp index c5fe667..cdfb58f 100644 --- a/src/commonTest/resources/com/ashampoo/xmp/sample_43_formatted_compact.xmp +++ b/src/commonTest/resources/com/ashampoo/xmp/sample_43_formatted_compact.xmp @@ -1,5 +1,5 @@ - + - + diff --git a/src/commonTest/resources/com/ashampoo/xmp/sample_44_formatted_compact.xmp b/src/commonTest/resources/com/ashampoo/xmp/sample_44_formatted_compact.xmp index 67bc94c..51c36ba 100644 --- a/src/commonTest/resources/com/ashampoo/xmp/sample_44_formatted_compact.xmp +++ b/src/commonTest/resources/com/ashampoo/xmp/sample_44_formatted_compact.xmp @@ -1,5 +1,5 @@ - + - + - + - + - + - + - + - + - + - + diff --git a/src/commonTest/resources/com/ashampoo/xmp/sample_49_formatted_compact.xmp b/src/commonTest/resources/com/ashampoo/xmp/sample_49_formatted_compact.xmp index 9abdf72..8c758af 100644 --- a/src/commonTest/resources/com/ashampoo/xmp/sample_49_formatted_compact.xmp +++ b/src/commonTest/resources/com/ashampoo/xmp/sample_49_formatted_compact.xmp @@ -1,5 +1,5 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +