diff --git a/README.md b/README.md index de5ca19..2dd89c4 100644 --- a/README.md +++ b/README.md @@ -116,8 +116,8 @@ Also, you can disable all the overhead of this library in your release builds by 2. Using the `no-op` version of the library: ```kotlin dependencies { - debugImplementation("com.github.popovanton0.blueprint:blueprint:1.0.0-alpha02") - releaseImplementation("com.github.popovanton0.blueprint:blueprint-no-op:1.0.0-alpha02") + debugImplementation("com.github.popovanton0.blueprint:blueprint:1.0.0-alpha03") + releaseImplementation("com.github.popovanton0.blueprint:blueprint-no-op:1.0.0-alpha03") } ``` @@ -140,7 +140,7 @@ Next, add the dependency below to your _module_'s `build.gradle` file: ```gradle dependencies { - implementation "com.github.popovanton0.blueprint:blueprint:1.0.0-alpha02" + implementation "com.github.popovanton0.blueprint:blueprint:1.0.0-alpha03" } ``` @@ -164,13 +164,13 @@ Next, add the dependency below to your _module_'s `build.gradle.kts` file: ```kotlin dependencies { - implementation("com.github.popovanton0.blueprint:blueprint:1.0.0-alpha02") + implementation("com.github.popovanton0.blueprint:blueprint:1.0.0-alpha03") } ``` Or using Gradle Version Catalog: ```toml [versions] -blueprint = "1.0.0-alpha02" +blueprint = "1.0.0-alpha03" [libraries] blueprint = { module = "com.github.popovanton0.blueprint:blueprint", version.ref = "blueprint" } @@ -178,7 +178,7 @@ blueprint = { module = "com.github.popovanton0.blueprint:blueprint", version.ref > [!WARNING] -> Do not use this dependency notation: `com.github.popovanton0:blueprint:1.0.0-alpha02`. +> Do not use this dependency notation: `com.github.popovanton0:blueprint:1.0.0-alpha03`. > It doesn't work! ### Licence diff --git a/blueprint-no-op/build.gradle.kts b/blueprint-no-op/build.gradle.kts index 08e8469..7a81e7d 100644 --- a/blueprint-no-op/build.gradle.kts +++ b/blueprint-no-op/build.gradle.kts @@ -70,7 +70,7 @@ publishing { register("release") { groupId = "com.popovanton0.blueprint" artifactId = "blueprint-no-op" - version = "1.0.0-alpha02" + version = "1.0.0-alpha03" afterEvaluate { from(components["release"]) diff --git a/blueprint/build.gradle.kts b/blueprint/build.gradle.kts index 68f9146..14291f8 100644 --- a/blueprint/build.gradle.kts +++ b/blueprint/build.gradle.kts @@ -70,7 +70,7 @@ publishing { register("release") { groupId = "com.popovanton0.blueprint" artifactId = "blueprint" - version = "1.0.0-alpha02" + version = "1.0.0-alpha03" afterEvaluate { from(components["release"]) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index badbf12..551fa6d 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,23 +1,23 @@ [versions] gradlePlugin = "8.1.1" kotlin = "1.9.10" -compose = "1.5.1" +compose = "1.5.4" composeCompiler = "1.5.3" paparazzi = "1.3.1" junit = "4.13.2" testParameterInjector = "1.12" equalsverifier = "3.14.2" androidxTestJunit = "1.1.5" -androidxCoreKtx = "1.10.1" -lifecycleRuntimeKtx = "2.6.1" -androidxActivityCompose = "1.7.2" +androidxCoreKtx = "1.12.0" +lifecycleRuntimeKtx = "2.6.2" +androidxActivityCompose = "1.8.0" androidx-benchmark = "1.1.1" test-runner = "1.5.2" test-rules = "1.5.0" -benchmark-junit4 = "1.1.1" -uiAndroidStubs = "1.5.1" +benchmark-junit4 = "1.2.0" +uiAndroidStubs = "1.5.4" androidxAnnotation = "1.7.0" -composeMaterial = "1.1.1" +composeMaterial = "1.1.2" binaryCompatibility = "0.13.2" [libraries]