Skip to content

Commit 667d02f

Browse files
committed
Version upgrade: 4.1.2
1 parent 8a09f69 commit 667d02f

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
@@ -124,7 +124,7 @@ Grab via Gradle, by adding this to your `build.gradle`:
124124
```gradle
125125
dependencies {
126126
// ...
127-
compile ('org.rm3l:maoni:4.1.1@aar') {
127+
compile ('org.rm3l:maoni:4.1.2@aar') {
128128
transitive = true
129129
}
130130
}
@@ -432,7 +432,7 @@ You just have to include `maoni-common` as a dependency in your project, e.g., w
432432
```gradle
433433
dependencies {
434434
// ...
435-
compile 'org.rm3l:maoni-common:4.1.1'
435+
compile 'org.rm3l:maoni-common:4.1.2'
436436
}
437437
```
438438

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.1.1'
31+
version = '4.1.2'
3232

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

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

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

101101
publicDownloadNumbers = true

maoni-sample/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ android {
111111
applicationId "org.rm3l.maoni.sample"
112112
minSdkVersion 15
113113
targetSdkVersion 25
114-
versionCode 411
115-
versionName "4.1.1"
114+
versionCode 412
115+
versionName "4.1.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.1.1</string>
32+
<string name="library_maoni_libraryVersion" translatable="false">4.1.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

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ android {
3131
defaultConfig {
3232
minSdkVersion 15
3333
targetSdkVersion 25
34-
versionCode 410
35-
versionName "4.1.1"
34+
versionCode 412
35+
versionName "4.1.2"
3636
}
3737
buildTypes {
3838
release {
@@ -43,7 +43,7 @@ android {
4343
}
4444

4545
group = 'org.rm3l'
46-
version = '4.1.1'
46+
version = '4.1.2'
4747

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

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

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

116116
publicDownloadNumbers = true

0 commit comments

Comments
 (0)