Skip to content

Commit 0927557

Browse files
committed
Version upgrade: 4.0.2
1 parent eb0d60e commit 0927557

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Grab via Gradle, by adding this to your `build.gradle`:
128128
```gradle
129129
dependencies {
130130
// ...
131-
compile ('org.rm3l:maoni:4.0.1@aar') {
131+
compile ('org.rm3l:maoni:4.0.2@aar') {
132132
transitive = true
133133
}
134134
}
@@ -436,7 +436,7 @@ You just have to include `maoni-common` as a dependency in your project, e.g., w
436436
```gradle
437437
dependencies {
438438
// ...
439-
compile 'org.rm3l:maoni-common:4.0.1'
439+
compile 'org.rm3l:maoni-common:4.0.2'
440440
}
441441
```
442442

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 = '4.0.1'
31+
version = '4.0.2'
3232

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

@@ -92,10 +92,10 @@ bintray {
9292

9393
//noinspection GroovyAssignabilityCheck
9494
version {
95-
name = '4.0.1'
95+
name = '4.0.2'
9696
desc = 'Maoni Common'
9797
released = new Date()
98-
vcsTag = '4.0.1'
98+
vcsTag = '4.0.2'
9999
}
100100

101101
publicDownloadNumbers = true

maoni-sample/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ android {
112112
minSdkVersion 15
113113
targetSdkVersion 25
114114
versionCode 401
115-
versionName "4.0.1"
115+
versionName "4.0.2"
116116

117117
vectorDrawables.useSupportLibrary = true
118118

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">4.0.1</string>
32+
<string name="library_maoni_libraryVersion" translatable="false">4.0.2</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

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ android {
3232
minSdkVersion 15
3333
targetSdkVersion 25
3434
versionCode 231
35-
versionName "4.0.1"
35+
versionName "4.0.2"
3636
}
3737
buildTypes {
3838
release {
@@ -43,7 +43,7 @@ android {
4343
}
4444

4545
group = 'org.rm3l'
46-
version = '4.0.1'
46+
version = '4.0.2'
4747

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

@@ -107,10 +107,10 @@ bintray {
107107

108108
//noinspection GroovyAssignabilityCheck
109109
version {
110-
name = '4.0.1'
110+
name = '4.0.2'
111111
desc = 'Maoni Android Library'
112112
released = new Date()
113-
vcsTag = '4.0.1'
113+
vcsTag = '4.0.2'
114114
}
115115

116116
publicDownloadNumbers = true

0 commit comments

Comments
 (0)