Skip to content

Commit

Permalink
Version bump: 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rm3l committed Mar 3, 2018
1 parent e1a38a1 commit d384924
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -125,7 +125,7 @@ Grab via Gradle, by adding this to your `build.gradle`:
```gradle
dependencies {
// ...
compile ('org.rm3l:maoni:5.0.0@aar') {
compile ('org.rm3l:maoni:6.0.0@aar') {
transitive = true
}
}
Expand Down Expand Up @@ -433,7 +433,7 @@ You just have to include `maoni-common` as a dependency in your project, e.g., w
```gradle
dependencies {
// ...
compile 'org.rm3l:maoni-common:5.0.0'
compile 'org.rm3l:maoni-common:6.0.0'
}
```

Expand Down
6 changes: 3 additions & 3 deletions maoni-common/build.gradle
Expand Up @@ -28,7 +28,7 @@ targetCompatibility = '1.7'
sourceCompatibility = '1.7'

group = 'org.rm3l'
version = '5.0.0'
version = '6.0.0'

final homePath = System.properties['user.home']

Expand Down Expand Up @@ -85,10 +85,10 @@ bintray {

//noinspection GroovyAssignabilityCheck
version {
name = '5.0.0'
name = '6.0.0'
desc = 'Maoni Common'
released = new Date()
vcsTag = '5.0.0'
vcsTag = '6.0.0'
}

publicDownloadNumbers = true
Expand Down
4 changes: 2 additions & 2 deletions maoni-sample/build.gradle
Expand Up @@ -114,8 +114,8 @@ android {
applicationId "org.rm3l.maoni.sample"
minSdkVersion 15
targetSdkVersion 27
versionCode 500
versionName "5.0.0"
versionCode 600
versionName "6.0.0"

vectorDrawables.useSupportLibrary = true

Expand Down
2 changes: 1 addition & 1 deletion maoni-sample/src/main/res/values/library_maoni_strings.xml
Expand Up @@ -29,7 +29,7 @@ SOFTWARE.
<string name="library_maoni_libraryName" translatable="false">Maoni</string>
<string name="library_maoni_libraryDescription" translatable="false">Maoni is a lightweight library for integrating a way to collect user feedbacks from within Android applications</string>
<string name="library_maoni_libraryWebsite" translatable="false">http://maoni.rm3l.org</string>
<string name="library_maoni_libraryVersion" translatable="false">5.0.0</string>
<string name="library_maoni_libraryVersion" translatable="false">6.0.0</string>
<!-- OpenSource section -->
<string name="library_maoni_isOpenSource" translatable="false">true</string>
<string name="library_maoni_repositoryLink" translatable="false">https://github.com/rm3l/maoni</string>
Expand Down
10 changes: 5 additions & 5 deletions maoni/build.gradle
Expand Up @@ -31,8 +31,8 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 27
versionCode 500
versionName "5.0.0"
versionCode 600
versionName "6.0.0"
}
buildTypes {
release {
Expand All @@ -49,7 +49,7 @@ android {
}

group = 'org.rm3l'
version = '5.0.0'
version = '6.0.0'

final homePath = System.properties['user.home']

Expand Down Expand Up @@ -113,10 +113,10 @@ bintray {

//noinspection GroovyAssignabilityCheck
version {
name = '5.0.0'
name = '6.0.0'
desc = 'Maoni Android Library'
released = new Date()
vcsTag = '5.0.0'
vcsTag = '6.0.0'
}

publicDownloadNumbers = true
Expand Down

0 comments on commit d384924

Please sign in to comment.