Skip to content

Commit 535e504

Browse files
version bump to 1.8.4
1 parent a756152 commit 535e504

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ You can check some features in the Crouton Demo.
2121
If you're already using Crouton and just want to download the latest version of the library, follow [this link](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22de.keyboardsurfer.android.widget%22).
2222

2323
## [Changelog](https://github.com/keyboardsurfer/Crouton/wiki/Changelog)
24-
### Current version: 1.8.3
24+
### Current version: 1.8.4
2525

2626
## Usage
2727

@@ -105,7 +105,7 @@ Then declare Crouton within your dependencies:
105105
```groovy
106106
dependencies {
107107
...
108-
compile('de.keyboardsurfer.android.widget:crouton:1.8.3') {
108+
compile('de.keyboardsurfer.android.widget:crouton:1.8.4') {
109109
// exclusion is not neccessary, but generally a good idea.
110110
exclude group: 'com.google.android', module: 'support-v4'
111111
}
@@ -170,7 +170,7 @@ The build requires Gradle. Operations are very simple:
170170
After putting Crouton in a repository you can add it as dependency.
171171

172172
```groovy
173-
compile('de.keyboardsurfer.android.widget:crouton:1.8.3') {
173+
compile('de.keyboardsurfer.android.widget:crouton:1.8.4') {
174174
exclude group: 'com.google.android', module: 'support-v4'
175175
}
176176
```

library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ android {
2626
compileSdkVersion 19
2727
defaultConfig {
2828
versionCode 7
29-
versionName "1.8.3"
29+
versionName "1.8.4"
3030
minSdkVersion 8
3131
targetSdkVersion 19
3232
}
@@ -39,7 +39,7 @@ android {
3939

4040
group = "de.keyboardsurfer.android.widget"
4141
artifactId = "crouton"
42-
version = "1.8.3"
42+
version = "1.8.4"
4343

4444
android.libraryVariants.all { variant ->
4545
def name = variant.buildType.name

sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
apply plugin: 'android'
18-
version = '1.8.3'
18+
version = '1.8.4'
1919

2020
buildscript {
2121
repositories {
@@ -46,7 +46,7 @@ android {
4646

4747
defaultConfig {
4848
versionCode 13
49-
versionName "1.8.3"
49+
versionName "1.8.4"
5050
minSdkVersion 8
5151
targetSdkVersion 19
5252
}

sample/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1919
package="de.keyboardsurfer.app.demo.crouton"
20-
android:versionCode="12"
21-
android:versionName="1.8.2" >
20+
android:versionCode="13"
21+
android:versionName="1.8.4" >
2222

2323
<uses-sdk
2424
android:minSdkVersion="7"

0 commit comments

Comments
 (0)