diff --git a/CHANGELOG.md b/CHANGELOG.md index d7faffa..d244a15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.0] - 2026-01-14 + +### Breaking Changes + +- **Artifact renamed**: `dev.onexeor:uxcam-kmp-shared` → `dev.onexeor:uxcam-kmp` + + Update your dependencies: + ```kotlin + // Before + implementation("dev.onexeor:uxcam-kmp-shared:") + + // After + implementation("dev.onexeor:uxcam-kmp:") + ``` + ## [1.3.0] - 2026-01-14 ### Added diff --git a/README.md b/README.md index b749765..71220e9 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Add the dependency to your shared module's `build.gradle.kts`: kotlin { sourceSets { commonMain.dependencies { - implementation("dev.onexeor:uxcam-kmp-shared:") + implementation("dev.onexeor:uxcam-kmp:") } } } @@ -65,7 +65,7 @@ Add the dependency to your module's `build.gradle.kts`: ```kotlin dependencies { - implementation("dev.onexeor:uxcam-kmp-shared:") + implementation("dev.onexeor:uxcam-kmp:") } ``` @@ -74,7 +74,7 @@ dependencies { Add to your `Podfile`: ```ruby -pod 'uxcam-kmp-shared', :git => 'https://github.com/OneXeor/UXCam-KMP.git' +pod 'uxcam-kmp', :git => 'https://github.com/OneXeor/UXCam-KMP.git' ``` Then run: @@ -215,13 +215,13 @@ UXCam.addScreenNamesToIgnore(listOf("LoginScreen", "SettingsScreen")) ```bash # Build the library -./gradlew :uxcam-kmp-shared:build +./gradlew :uxcam-kmp:build # Run tests -./gradlew :uxcam-kmp-shared:allTests +./gradlew :uxcam-kmp:allTests # Generate iOS framework -./gradlew :uxcam-kmp-shared:generateDummyFramework +./gradlew :uxcam-kmp:generateDummyFramework ``` ## Roadmap diff --git a/gradle.properties b/gradle.properties index 6e8d882..9c55866 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,11 +13,11 @@ kotlin.mpp.enableCInteropCommonization=true kotlin.mpp.androidSourceSetLayoutVersion=2 # Library Version -VERSION_NAME=1.3.0 +VERSION_NAME=2.0.0 # Maven Central Publishing (Sonatype Central Portal) GROUP=dev.onexeor -POM_ARTIFACT_ID=uxcam-kmp-shared +POM_ARTIFACT_ID=uxcam-kmp POM_NAME=UXCam KMP POM_DESCRIPTION=Kotlin Multiplatform wrapper for UXCam SDK POM_URL=https://github.com/OneXeor/UXCam-KMP