Skip to content

Commit

Permalink
Version bump: 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rm3l committed Aug 10, 2016
1 parent 9ad33aa commit 4bf443d
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 16 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Grab via Gradle, by adding this to your `build.gradle`:
```gradle
dependencies {
// ...
compile ('org.rm3l:maoni:2.0.1@aar') {
compile ('org.rm3l:maoni:2.2.0@aar') {
transitive = true;
}
}
Expand Down Expand Up @@ -149,7 +149,7 @@ Add this additional line to your `build.gradle`:
```gradle
dependencies {
// ...
compile 'org.rm3l:maoni-email:2.0.1'
compile 'org.rm3l:maoni-email:2.2.0'
}
```

Expand Down Expand Up @@ -242,7 +242,7 @@ You just have to include `maoni-common` as a dependency in your project, e.g., w
```gradle
dependencies {
// ...
compile 'org.rm3l:maoni-common:2.0.1'
compile 'org.rm3l:maoni-common:2.2.0'
}
```

Expand All @@ -260,6 +260,7 @@ You just have to include `maoni-common` as a dependency in your project, e.g., w
* Armel Soro
* [rm3l.org](https://rm3l.org) - <apps+maoni@rm3l.org>
* [paypal.me/rm3l](https://paypal.me/rm3l)
* [coinbase.com/rm3l](https://www.coinbase.com/rm3l)


## License
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 = '2.0.1'
version = '2.2.0'

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

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

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

publicDownloadNumbers = true
Expand Down
6 changes: 3 additions & 3 deletions maoni-email/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ configurations {
}

group = 'org.rm3l'
version = '2.0.1'
version = '2.2.0'

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

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

//noinspection GroovyAssignabilityCheck
version {
name = '2.0.1'
name = '2.2.0'
desc = 'Maoni Android Library - Email Handler'
released = new Date()
vcsTag = '2.0.1'
vcsTag = '2.2.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 @@ -69,8 +69,8 @@ android {
applicationId "org.rm3l.maoni.sample"
minSdkVersion 15
targetSdkVersion 24
versionCode 211
versionName "2.1.1"
versionCode 220
versionName "2.2.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">2.0.1</string>
<string name="library_maoni_libraryVersion" translatable="false">2.2.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
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 24
versionCode 110
versionName "2.0.1"
versionName "2.2.0"
}
buildTypes {
release {
Expand All @@ -43,7 +43,7 @@ android {
}

group = 'org.rm3l'
version = '2.0.1'
version = '2.2.0'

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

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

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

publicDownloadNumbers = true
Expand Down

0 comments on commit 4bf443d

Please sign in to comment.