Skip to content

Commit

Permalink
Version upgrade: 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rm3l committed Jan 8, 2018
1 parent fb31bc4 commit c120b04
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ Grab via Gradle, by adding this to your `build.gradle`:
```gradle
dependencies {
// ...
compile ('org.rm3l:maoni:4.1.0@aar') {
compile ('org.rm3l:maoni:4.1.1@aar') {
transitive = true
}
}
Expand Down Expand Up @@ -432,7 +432,7 @@ You just have to include `maoni-common` as a dependency in your project, e.g., w
```gradle
dependencies {
// ...
compile 'org.rm3l:maoni-common:4.1.0'
compile 'org.rm3l:maoni-common:4.1.1'
}
```

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

group = 'org.rm3l'
version = '4.1.0'
version = '4.1.1'

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

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

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

publicDownloadNumbers = true
Expand Down
4 changes: 2 additions & 2 deletions maoni-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ android {
applicationId "org.rm3l.maoni.sample"
minSdkVersion 15
targetSdkVersion 25
versionCode 410
versionName "4.1.0"
versionCode 411
versionName "4.1.1"

vectorDrawables.useSupportLibrary = true

Expand Down
2 changes: 1 addition & 1 deletion maoni-sample/src/main/res/values/library_maoni_strings.xml
Original file line number Diff line number Diff line change
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">4.1.0</string>
<string name="library_maoni_libraryVersion" translatable="false">4.1.1</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
8 changes: 4 additions & 4 deletions maoni/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ android {
minSdkVersion 15
targetSdkVersion 25
versionCode 410
versionName "4.1.0"
versionName "4.1.1"
}
buildTypes {
release {
Expand All @@ -43,7 +43,7 @@ android {
}

group = 'org.rm3l'
version = '4.1.0'
version = '4.1.1'

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

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

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

publicDownloadNumbers = true
Expand Down

0 comments on commit c120b04

Please sign in to comment.