Skip to content

Commit

Permalink
Version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martawoldanska committed Oct 8, 2018
1 parent 5e6ad83 commit b9281d3
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 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 '2.2.0'
version '3.0.0'

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 = '2.2.0'
ext.cockpit_core_version = '3.0.0'
repositories {
maven {
url "https://plugins.gradle.org/m2/"
Expand All @@ -21,7 +21,7 @@ plugins {
}

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

sourceCompatibility = 1.7

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ It consists of three parts:
- Android library containing classes to manage and display those params,
- CockpitCore module containing classes common for plugin and the library.

<img src="https://github.com/Polidea/Cockpit/blob/development/images/cockpit-2.3.0.gif" width="270" height="480">
<img src="https://github.com/Polidea/Cockpit/blob/master/images/cockpit-3.0.gif" width="270" height="480">

Each defined value is called `param`. The set of params is called `cockpit`.

Expand All @@ -33,9 +33,9 @@ showDescription: true
After you've built your project, `Cockpit.java` file will get generated for you. You can use it like any other code in your project.

<p float="left">
<img src="https://github.com/Polidea/Cockpit/blob/development/images/cockpit-full.png" width="216" height="384" />
<img src="https://github.com/Polidea/Cockpit/blob/development/images/cockpit-half.png" width="216" height="384" />
<img src="https://github.com/Polidea/Cockpit/blob/development/images/cockpit-list.png" width="216" height="384" />
<img src="https://github.com/Polidea/Cockpit/blob/master/images/cockpit-full.png" width="216" height="384" />
<img src="https://github.com/Polidea/Cockpit/blob/master/images/cockpit-half.png" width="216" height="384" />
<img src="https://github.com/Polidea/Cockpit/blob/master/images/cockpit-list.png" width="216" height="384" />
</p>

### Documentation
Expand Down Expand Up @@ -198,15 +198,15 @@ Then add CockpitPlugin classpath into your `buildscript#dependencies`:
```
buildscript {
dependencies {
classpath "gradle.plugin.com.polidea.cockpit:CockpitPlugin:2.2.0"
classpath "gradle.plugin.com.polidea.cockpit:CockpitPlugin:3.0.0"
}
}
```
Last thing is to add Cockpit library dependency:

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

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=2.2.0
VERSION_NAME=3.0.0

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 = '2.2.0'
cockpit_core_version = '3.0.0'
}
File renamed without changes
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 "2.2.0"
versionName "3.0.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down

0 comments on commit b9281d3

Please sign in to comment.