Skip to content

Commit 67c5be8

Browse files
authored
Merge pull request #42 from infinum/release/0.1.1
Release: v0.1.1
2 parents 85141e6 + 73a09da commit 67c5be8

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,31 +59,31 @@ Then, you can include the library in your module's `build.gradle` or `build.grad
5959
**Groovy**
6060

6161
```groovy
62-
implementation "com.infinum.buggy:buggy:0.1.0"
62+
implementation "com.infinum.buggy:buggy:0.1.1"
6363
```
6464

6565
**KotlinDSL**
6666

6767
```kotlin
68-
implementation("com.infinum.buggy:buggy:0.1.0")
68+
implementation("com.infinum.buggy:buggy:0.1.1")
6969
```
7070

7171
If you want to use other modules, you can include them in the same way:
7272

7373
**Groovy**
7474

7575
```groovy
76-
implementation "com.infinum.buggy:buggy-android:0.1.0"
77-
implementation "com.infinum.buggy:buggy-rolling-file-logger:0.1.0"
78-
implementation "com.infinum.buggy:buggy-timber:0.1.0"
76+
implementation "com.infinum.buggy:buggy-android:0.1.1"
77+
implementation "com.infinum.buggy:buggy-rolling-file-logger:0.1.1"
78+
implementation "com.infinum.buggy:buggy-timber:0.1.1"
7979
```
8080

8181
**KotlinDSL**
8282

8383
```kotlin
84-
implementation("com.infinum.buggy:buggy-android:0.1.0")
85-
implementation("com.infinum.buggy:buggy-rolling-file-logger:0.1.0")
86-
implementation("com.infinum.buggy:buggy-timber:0.1.0")
84+
implementation("com.infinum.buggy:buggy-android:0.1.1")
85+
implementation("com.infinum.buggy:buggy-rolling-file-logger:0.1.1")
86+
implementation("com.infinum.buggy:buggy-timber:0.1.1")
8787
```
8888

8989
Don't forget to sync your project.

config.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ extra["buildConfig"] = mapOf(
77
extra["releaseConfig"] = mapOf(
88
"group" to "com.infinum.buggy",
99
"versionCode" to 1,
10-
"version" to "0.1.0"
10+
"version" to "0.1.1"
1111
)

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ junit = "6.0.3"
1212
timber = "5.0.1"
1313
navigationFragmentKtx = "2.9.8"
1414
navigationUiKtx = "2.9.8"
15-
buggy = "0.1.0"
15+
buggy = "0.1.1"
1616

1717
[bundles]
1818
test = [

maven-publish.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ task sourcesJar(type: Jar) {
1414
|| project.plugins.hasPlugin('com.android.library')) {
1515
from android.sourceSets.main.java.srcDirs
1616
} else {
17-
from sourceSets.main.allJava
17+
from sourceSets.main.allSource
1818
}
1919
}
2020

maven.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if (propsFile.exists()) {
2626
ext.sonatype = [
2727

2828
// If going with Option 3 the properties file will not exist and will fallback to the specified hardcoded value
29-
url : properties["sonatype.url"] ?: "https://oss.sonatype.org/service/local/staging/deploy/maven2",
29+
url : properties["sonatype.url"] ?: "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2",
3030

3131
// Option 1
3232
username: findProperty("sonatypeUsername")?.toString()

0 commit comments

Comments
 (0)