Skip to content

Commit

Permalink
Compose 1.5.4 and other dependency bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
popovanton0 committed Nov 9, 2023
1 parent 590d9dd commit 166c365
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```

Expand All @@ -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"
}
```
</details>
Expand All @@ -164,21 +164,21 @@ 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" }
```
</details>

> [!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
Expand Down
2 changes: 1 addition & 1 deletion blueprint-no-op/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ publishing {
register<MavenPublication>("release") {
groupId = "com.popovanton0.blueprint"
artifactId = "blueprint-no-op"
version = "1.0.0-alpha02"
version = "1.0.0-alpha03"

afterEvaluate {
from(components["release"])
Expand Down
2 changes: 1 addition & 1 deletion blueprint/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ publishing {
register<MavenPublication>("release") {
groupId = "com.popovanton0.blueprint"
artifactId = "blueprint"
version = "1.0.0-alpha02"
version = "1.0.0-alpha03"

afterEvaluate {
from(components["release"])
Expand Down
14 changes: 7 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -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]
Expand Down

0 comments on commit 166c365

Please sign in to comment.