Skip to content

Commit 4c4f6a7

Browse files
committed
Bump version from 8.3.1 to 8.3.2
Looks like Bintray is having few issues causing partial updates, hence the patches that follow up here. See https://status.bintray.com/
1 parent 93e673e commit 4c4f6a7

21 files changed

+41
-41
lines changed

README.md

+11-11
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-
implementation 'org.rm3l:maoni:8.3.1@aar'
131+
implementation 'org.rm3l:maoni:8.3.2@aar'
132132
}
133133
```
134134

@@ -191,7 +191,7 @@ Add this additional line to your `build.gradle`:
191191
```gradle
192192
dependencies {
193193
// ...
194-
implementation 'org.rm3l:maoni:8.3.1@aar'
194+
implementation 'org.rm3l:maoni:8.3.2@aar'
195195
}
196196
```
197197

@@ -221,8 +221,8 @@ Add this additional line to your `build.gradle`:
221221
```gradle
222222
dependencies {
223223
// ...
224-
implementation 'org.rm3l:maoni:8.3.1@aar'
225-
implementation 'org.rm3l:maoni-slack:8.3.1@aar'
224+
implementation 'org.rm3l:maoni:8.3.2@aar'
225+
implementation 'org.rm3l:maoni-slack:8.3.2@aar'
226226
}
227227
```
228228

@@ -251,8 +251,8 @@ Add this additional line to your `build.gradle`:
251251

252252
```gradle
253253
dependencies {
254-
implementation 'org.rm3l:maoni:8.3.1@aar'
255-
implementation 'org.rm3l:maoni-github:8.3.1@aar'
254+
implementation 'org.rm3l:maoni:8.3.2@aar'
255+
implementation 'org.rm3l:maoni-github:8.3.2@aar'
256256
}
257257
```
258258

@@ -282,8 +282,8 @@ Add this additional line to your `build.gradle`:
282282

283283
```gradle
284284
dependencies {
285-
implementation 'org.rm3l:maoni:8.3.1@aar'
286-
implementation 'org.rm3l:maoni-jira:8.3.1@aar'
285+
implementation 'org.rm3l:maoni:8.3.2@aar'
286+
implementation 'org.rm3l:maoni-jira:8.3.2@aar'
287287
}
288288
```
289289

@@ -314,8 +314,8 @@ Add this additional line to your `build.gradle`:
314314
```gradle
315315
dependencies {
316316
// ...
317-
implementation 'org.rm3l:maoni:8.3.1@aar'
318-
implementation 'org.rm3l:maoni-doorbell:8.3.1@aar'
317+
implementation 'org.rm3l:maoni:8.3.2@aar'
318+
implementation 'org.rm3l:maoni-doorbell:8.3.2@aar'
319319
}
320320
```
321321

@@ -448,7 +448,7 @@ You just have to include `maoni-common` as a dependency in your project, e.g., w
448448
```gradle
449449
dependencies {
450450
// ...
451-
api 'org.rm3l:maoni-common:8.3.1@aar'
451+
api 'org.rm3l:maoni-common:8.3.2@aar'
452452
}
453453
```
454454
You can write your project in any JVM language of your choice (e.g., [Kotlin](https://kotlinlang.org/), as with [maoni-slack](https://github.com/rm3l/maoni-slack) and [maoni-github](https://github.com/rm3l/maoni-github)), as long as the callback implementation can be called from Maoni.

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ final homePath = System.properties['user.home']
2626

2727
buildscript {
2828
ext.maoni_group = 'org.rm3l'
29-
ext.maoni_version = '8.3.1'
29+
ext.maoni_version = '8.3.2'
3030

3131
ext.kotlin_version = '1.3.72'
3232
ext.anko_version = '0.10.8'

callbacks/maoni-doorbell/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Add this to your `build.gradle`:
1717

1818
```gradle
1919
dependencies {
20-
implementation 'org.rm3l:maoni:8.3.1@aar'
21-
implementation 'org.rm3l:maoni-doorbell:8.3.1@aar'
20+
implementation 'org.rm3l:maoni:8.3.2@aar'
21+
implementation 'org.rm3l:maoni-doorbell:8.3.2@aar'
2222
}
2323
```
2424

callbacks/maoni-doorbell/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ publishing {
137137
dependencyNode.appendNode('groupId', it.group)
138138
dependencyNode.appendNode('artifactId', it.name)
139139
if (it.name.startsWith('maoni-')) {
140-
dependencyNode.appendNode('version', '8.3.1')
140+
dependencyNode.appendNode('version', '8.3.2')
141141
dependencyNode.appendNode('packaging', 'aar')
142142
} else {
143143
dependencyNode.appendNode('version', it.version)
@@ -188,7 +188,7 @@ bintray {
188188

189189
licenses = ['MIT']
190190
vcsUrl = 'https://github.com/rm3l/maoni.git'
191-
websiteUrl = 'https://github.com/rm3l/maoni/tree/8.3.1/callbacks/maoni-doorbell'
191+
websiteUrl = 'https://github.com/rm3l/maoni/tree/8.3.2/callbacks/maoni-doorbell'
192192
issueTrackerUrl = 'https://github.com/rm3l/maoni/issues'
193193

194194
}

callbacks/maoni-doorbell/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ POM_NAME=maoni-doorbell
22
POM_DESCRIPTION=Callback for Maoni to send user feedback to Doorbell.io
33
POM_ARTIFACT_ID=maoni-doorbell
44
POM_PACKAGING=aar
5-
POM_URL=https://github.com/rm3l/maoni/tree/8.3.1/callbacks/maoni-doorbell
5+
POM_URL=https://github.com/rm3l/maoni/tree/8.3.2/callbacks/maoni-doorbell

callbacks/maoni-email/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Add this to your `build.gradle`:
1616

1717
```gradle
1818
dependencies {
19-
implementation 'org.rm3l:maoni:8.3.1@aar'
20-
implementation 'org.rm3l:maoni-email:8.3.1@aar'
19+
implementation 'org.rm3l:maoni:8.3.2@aar'
20+
implementation 'org.rm3l:maoni-email:8.3.2@aar'
2121
}
2222
```
2323

callbacks/maoni-email/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ publishing {
130130
dependencyNode.appendNode('groupId', it.group)
131131
dependencyNode.appendNode('artifactId', it.name)
132132
if (it.name.startsWith('maoni-')) {
133-
dependencyNode.appendNode('version', '8.3.1')
133+
dependencyNode.appendNode('version', '8.3.2')
134134
dependencyNode.appendNode('packaging', 'aar')
135135
} else {
136136
dependencyNode.appendNode('version', it.version)
@@ -181,7 +181,7 @@ bintray {
181181

182182
licenses = ['MIT']
183183
vcsUrl = 'https://github.com/rm3l/maoni.git'
184-
websiteUrl = 'https://github.com/rm3l/maoni/tree/8.3.1/callbacks/maoni-email'
184+
websiteUrl = 'https://github.com/rm3l/maoni/tree/8.3.2/callbacks/maoni-email'
185185
issueTrackerUrl = 'https://github.com/rm3l/maoni/issues'
186186

187187
}

callbacks/maoni-email/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ POM_NAME=maoni-email
22
POM_DESCRIPTION=Callback for Maoni to send user feedback via email
33
POM_ARTIFACT_ID=maoni-email
44
POM_PACKAGING=aar
5-
POM_URL=https://github.com/rm3l/maoni/tree/8.3.1/callbacks/maoni-email
5+
POM_URL=https://github.com/rm3l/maoni/tree/8.3.2/callbacks/maoni-email

callbacks/maoni-github/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Add this to your `build.gradle`:
1919

2020
```gradle
2121
dependencies {
22-
implementation 'org.rm3l:maoni:8.3.1@aar'
23-
implementation 'org.rm3l:maoni-github:8.3.1@aar'
22+
implementation 'org.rm3l:maoni:8.3.2@aar'
23+
implementation 'org.rm3l:maoni-github:8.3.2@aar'
2424
}
2525
```
2626

callbacks/maoni-github/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ publishing {
135135
dependencyNode.appendNode('groupId', it.group)
136136
dependencyNode.appendNode('artifactId', it.name)
137137
if (it.name.startsWith('maoni-')) {
138-
dependencyNode.appendNode('version', '8.3.1')
138+
dependencyNode.appendNode('version', '8.3.2')
139139
dependencyNode.appendNode('packaging', 'aar')
140140
} else {
141141
dependencyNode.appendNode('version', it.version)
@@ -186,7 +186,7 @@ bintray {
186186

187187
licenses = ['MIT']
188188
vcsUrl = 'https://github.com/rm3l/maoni.git'
189-
websiteUrl = 'https://github.com/rm3l/maoni/tree/8.3.1/callbacks/maoni-github'
189+
websiteUrl = 'https://github.com/rm3l/maoni/tree/8.3.2/callbacks/maoni-github'
190190
issueTrackerUrl = 'https://github.com/rm3l/maoni/issues'
191191

192192
}

callbacks/maoni-github/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ POM_NAME=maoni-github
22
POM_DESCRIPTION=Callback for Maoni to send user feedback as Github issues
33
POM_ARTIFACT_ID=maoni-github
44
POM_PACKAGING=aar
5-
POM_URL=https://github.com/rm3l/maoni/tree/8.3.1/callbacks/maoni-github
5+
POM_URL=https://github.com/rm3l/maoni/tree/8.3.2/callbacks/maoni-github

callbacks/maoni-jira/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Add this to your `build.gradle`:
1717

1818
```gradle
1919
dependencies {
20-
implementation 'org.rm3l:maoni:8.3.1@aar'
21-
implementation 'org.rm3l:maoni-jira:8.3.1@aar'
20+
implementation 'org.rm3l:maoni:8.3.2@aar'
21+
implementation 'org.rm3l:maoni-jira:8.3.2@aar'
2222
}
2323
```
2424

callbacks/maoni-jira/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ publishing {
135135
dependencyNode.appendNode('groupId', it.group)
136136
dependencyNode.appendNode('artifactId', it.name)
137137
if (it.name.startsWith('maoni-')) {
138-
dependencyNode.appendNode('version', '8.3.1')
138+
dependencyNode.appendNode('version', '8.3.2')
139139
dependencyNode.appendNode('packaging', 'aar')
140140
} else {
141141
dependencyNode.appendNode('version', it.version)
@@ -186,7 +186,7 @@ bintray {
186186

187187
licenses = ['MIT']
188188
vcsUrl = 'https://github.com/rm3l/maoni.git'
189-
websiteUrl = 'https://github.com/rm3l/maoni/tree/8.3.1/callbacks/maoni-jira'
189+
websiteUrl = 'https://github.com/rm3l/maoni/tree/8.3.2/callbacks/maoni-jira'
190190
issueTrackerUrl = 'https://github.com/rm3l/maoni/issues'
191191

192192
}

callbacks/maoni-jira/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ POM_NAME=maoni-jira
22
POM_DESCRIPTION=Callback for Maoni to send user feedback as JIRA issues
33
POM_ARTIFACT_ID=maoni-jira
44
POM_PACKAGING=aar
5-
POM_URL=https://github.com/rm3l/maoni/tree/8.3.1/callbacks/maoni-jira
5+
POM_URL=https://github.com/rm3l/maoni/tree/8.3.2/callbacks/maoni-jira

callbacks/maoni-slack/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Now in your app, add this to your `build.gradle`:
2121

2222
```gradle
2323
dependencies {
24-
implementation 'org.rm3l:maoni:8.3.1@aar'
25-
implementation 'org.rm3l:maoni-slack:8.3.1@aar'
24+
implementation 'org.rm3l:maoni:8.3.2@aar'
25+
implementation 'org.rm3l:maoni-slack:8.3.2@aar'
2626
}
2727
```
2828

callbacks/maoni-slack/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ publishing {
135135
dependencyNode.appendNode('groupId', it.group)
136136
dependencyNode.appendNode('artifactId', it.name)
137137
if (it.name.startsWith('maoni-')) {
138-
dependencyNode.appendNode('version', '8.3.1')
138+
dependencyNode.appendNode('version', '8.3.2')
139139
dependencyNode.appendNode('packaging', 'aar')
140140
} else {
141141
dependencyNode.appendNode('version', it.version)
@@ -186,7 +186,7 @@ bintray {
186186

187187
licenses = ['MIT']
188188
vcsUrl = 'https://github.com/rm3l/maoni.git'
189-
websiteUrl = 'https://github.com/rm3l/maoni/tree/8.3.1/callbacks/maoni-slack'
189+
websiteUrl = 'https://github.com/rm3l/maoni/tree/8.3.2/callbacks/maoni-slack'
190190
issueTrackerUrl = 'https://github.com/rm3l/maoni/issues'
191191

192192
}

callbacks/maoni-slack/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ POM_NAME=maoni-slack
22
POM_DESCRIPTION=Callback for Maoni to send user feedback to a Slack channel
33
POM_ARTIFACT_ID=maoni-slack
44
POM_PACKAGING=aar
5-
POM_URL=https://github.com/rm3l/maoni/tree/8.3.1/callbacks/maoni-slack
5+
POM_URL=https://github.com/rm3l/maoni/tree/8.3.2/callbacks/maoni-slack

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ POM_GITHUB_REPO=rm3l/maoni
3434
POM_GITHUB_README=README.md
3535

3636
POM_LICENCE_NAME=The MIT License
37-
POM_LICENCE_URL=https://github.com/rm3l/maoni/blob/8.3.1/LICENSE
37+
POM_LICENCE_URL=https://github.com/rm3l/maoni/blob/8.3.2/LICENSE
3838
POM_LICENCE_DIST=repo
3939

4040
POM_DEVELOPER_ID=rm3l

maoni-common/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ publishing {
127127
dependencyNode.appendNode('groupId', it.group)
128128
dependencyNode.appendNode('artifactId', it.name)
129129
if (it.name.startsWith('maoni-')) {
130-
dependencyNode.appendNode('version', '8.3.1')
130+
dependencyNode.appendNode('version', '8.3.2')
131131
dependencyNode.appendNode('packaging', 'aar')
132132
} else {
133133
dependencyNode.appendNode('version', it.version)

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 collecting and handling user feedback 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">8.3.1</string>
32+
<string name="library_maoni_libraryVersion" translatable="false">8.3.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ publishing {
139139
dependencyNode.appendNode('groupId', it.group)
140140
dependencyNode.appendNode('artifactId', it.name)
141141
if (it.name.startsWith('maoni-')) {
142-
dependencyNode.appendNode('version', '8.3.1')
142+
dependencyNode.appendNode('version', '8.3.2')
143143
dependencyNode.appendNode('packaging', 'aar')
144144
} else {
145145
dependencyNode.appendNode('version', it.version)

0 commit comments

Comments
 (0)