Skip to content

Commit

Permalink
Version upgrade: 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rm3l committed Jan 8, 2018
1 parent 09cccc8 commit 7522274
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 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.0.2@aar') {
compile ('org.rm3l:maoni:4.1.0@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.0.2'
compile 'org.rm3l:maoni-common:4.1.0'
}
```

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.0.2'
version = '4.1.0'

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

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

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

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 401
versionName "4.0.2"
versionCode 410
versionName "4.1.0"

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.0.2</string>
<string name="library_maoni_libraryVersion" translatable="false">4.1.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
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 25
versionCode 231
versionName "4.0.2"
versionCode 410
versionName "4.1.0"
}
buildTypes {
release {
Expand All @@ -43,7 +43,7 @@ android {
}

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

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

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

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

publicDownloadNumbers = true
Expand Down

0 comments on commit 7522274

Please sign in to comment.