Skip to content

Commit d384924

Browse files
committed
Version bump: 6.0.0
1 parent e1a38a1 commit d384924

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Grab via Gradle, by adding this to your `build.gradle`:
125125
```gradle
126126
dependencies {
127127
// ...
128-
compile ('org.rm3l:maoni:5.0.0@aar') {
128+
compile ('org.rm3l:maoni:6.0.0@aar') {
129129
transitive = true
130130
}
131131
}
@@ -433,7 +433,7 @@ You just have to include `maoni-common` as a dependency in your project, e.g., w
433433
```gradle
434434
dependencies {
435435
// ...
436-
compile 'org.rm3l:maoni-common:5.0.0'
436+
compile 'org.rm3l:maoni-common:6.0.0'
437437
}
438438
```
439439

maoni-common/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ targetCompatibility = '1.7'
2828
sourceCompatibility = '1.7'
2929

3030
group = 'org.rm3l'
31-
version = '5.0.0'
31+
version = '6.0.0'
3232

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

@@ -85,10 +85,10 @@ bintray {
8585

8686
//noinspection GroovyAssignabilityCheck
8787
version {
88-
name = '5.0.0'
88+
name = '6.0.0'
8989
desc = 'Maoni Common'
9090
released = new Date()
91-
vcsTag = '5.0.0'
91+
vcsTag = '6.0.0'
9292
}
9393

9494
publicDownloadNumbers = true

maoni-sample/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ android {
114114
applicationId "org.rm3l.maoni.sample"
115115
minSdkVersion 15
116116
targetSdkVersion 27
117-
versionCode 500
118-
versionName "5.0.0"
117+
versionCode 600
118+
versionName "6.0.0"
119119

120120
vectorDrawables.useSupportLibrary = true
121121

maoni-sample/src/main/res/values/library_maoni_strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ SOFTWARE.
2929
<string name="library_maoni_libraryName" translatable="false">Maoni</string>
3030
<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>
3131
<string name="library_maoni_libraryWebsite" translatable="false">http://maoni.rm3l.org</string>
32-
<string name="library_maoni_libraryVersion" translatable="false">5.0.0</string>
32+
<string name="library_maoni_libraryVersion" translatable="false">6.0.0</string>
3333
<!-- OpenSource section -->
3434
<string name="library_maoni_isOpenSource" translatable="false">true</string>
3535
<string name="library_maoni_repositoryLink" translatable="false">https://github.com/rm3l/maoni</string>

maoni/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ android {
3131
defaultConfig {
3232
minSdkVersion 15
3333
targetSdkVersion 27
34-
versionCode 500
35-
versionName "5.0.0"
34+
versionCode 600
35+
versionName "6.0.0"
3636
}
3737
buildTypes {
3838
release {
@@ -49,7 +49,7 @@ android {
4949
}
5050

5151
group = 'org.rm3l'
52-
version = '5.0.0'
52+
version = '6.0.0'
5353

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

@@ -113,10 +113,10 @@ bintray {
113113

114114
//noinspection GroovyAssignabilityCheck
115115
version {
116-
name = '5.0.0'
116+
name = '6.0.0'
117117
desc = 'Maoni Android Library'
118118
released = new Date()
119-
vcsTag = '5.0.0'
119+
vcsTag = '6.0.0'
120120
}
121121

122122
publicDownloadNumbers = true

0 commit comments

Comments
 (0)