Skip to content

Commit ad4a17c

Browse files
Version 3.0.1
1 parent 39b7d9e commit ad4a17c

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Diff for: CockpitCore/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ plugins {
1616
}
1717

1818
group 'com.polidea.cockpit'
19-
version '3.0.0'
19+
version '3.0.1'
2020

2121
repositories {
2222
google()

Diff for: CockpitPlugin/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext.kotlin_version = '1.2.51'
3-
ext.cockpit_core_version = '3.0.0'
3+
ext.cockpit_core_version = '3.0.1'
44
repositories {
55
maven {
66
url "https://plugins.gradle.org/m2/"
@@ -21,7 +21,7 @@ plugins {
2121
}
2222

2323
group = 'com.polidea.cockpit'
24-
version = '3.0.0'
24+
version = '3.0.1'
2525

2626
sourceCompatibility = 1.7
2727

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -198,15 +198,15 @@ Then add CockpitPlugin classpath into your `buildscript#dependencies`:
198198
```
199199
buildscript {
200200
dependencies {
201-
classpath "gradle.plugin.com.polidea.cockpit:CockpitPlugin:3.0.0"
201+
classpath "gradle.plugin.com.polidea.cockpit:CockpitPlugin:3.0.1"
202202
}
203203
}
204204
```
205205
Last thing is to add Cockpit library dependency:
206206

207207
```
208208
dependencies {
209-
debugImplementation 'com.polidea.cockpit:cockpit:3.0.0'
209+
debugImplementation 'com.polidea.cockpit:cockpit:3.0.1'
210210
}
211211
```
212212

Diff for: gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ GROUP=com.polidea.cockpit
2020
POM_ARTIFACT_ID=cockpit
2121
POM_NAME=Cockpit
2222
POM_PACKAGING=aar
23-
VERSION_NAME=3.0.0
23+
VERSION_NAME=3.0.1
2424

2525
POM_DESCRIPTION=Cockpit is an Android library providing a way to easily define a set of parameters that can be accessed and changed by the developers via built-in compact UI at runtime.
2626

Diff for: gradle/dependencies.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
ext {
2-
cockpit_core_version = '3.0.0'
2+
cockpit_core_version = '3.0.1'
33
}

Diff for: sample/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ android {
2727
minSdkVersion 21
2828
targetSdkVersion 28
2929
versionCode 2
30-
versionName "3.0.0"
30+
versionName "3.0.1"
3131

3232
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
3333

0 commit comments

Comments
 (0)