Skip to content

Commit

Permalink
Version 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
martawoldanska committed Dec 6, 2018
1 parent 39b7d9e commit ad4a17c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CockpitCore/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {
}

group 'com.polidea.cockpit'
version '3.0.0'
version '3.0.1'

repositories {
google()
Expand Down
4 changes: 2 additions & 2 deletions CockpitPlugin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext.kotlin_version = '1.2.51'
ext.cockpit_core_version = '3.0.0'
ext.cockpit_core_version = '3.0.1'
repositories {
maven {
url "https://plugins.gradle.org/m2/"
Expand All @@ -21,7 +21,7 @@ plugins {
}

group = 'com.polidea.cockpit'
version = '3.0.0'
version = '3.0.1'

sourceCompatibility = 1.7

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,15 +198,15 @@ Then add CockpitPlugin classpath into your `buildscript#dependencies`:
```
buildscript {
dependencies {
classpath "gradle.plugin.com.polidea.cockpit:CockpitPlugin:3.0.0"
classpath "gradle.plugin.com.polidea.cockpit:CockpitPlugin:3.0.1"
}
}
```
Last thing is to add Cockpit library dependency:

```
dependencies {
debugImplementation 'com.polidea.cockpit:cockpit:3.0.0'
debugImplementation 'com.polidea.cockpit:cockpit:3.0.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ GROUP=com.polidea.cockpit
POM_ARTIFACT_ID=cockpit
POM_NAME=Cockpit
POM_PACKAGING=aar
VERSION_NAME=3.0.0
VERSION_NAME=3.0.1

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.

Expand Down
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ext {
cockpit_core_version = '3.0.0'
cockpit_core_version = '3.0.1'
}
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ android {
minSdkVersion 21
targetSdkVersion 28
versionCode 2
versionName "3.0.0"
versionName "3.0.1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down

0 comments on commit ad4a17c

Please sign in to comment.