Skip to content

Commit 0a2c0a5

Browse files
Version 0.8.3
1 parent 2b503c1 commit 0a2c0a5

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

threadposter/build.gradle

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ apply plugin: 'com.android.library'
22
apply plugin: 'com.jfrog.bintray'
33
apply plugin: 'com.github.dcendents.android-maven'
44

5+
// Reminder: to upload a new version, do the following:
6+
// 1. Make sure that everything works (incl. manual checks using sample app)
7+
// 2. Update library version identifiers (libraryVersion, versionName, versionCode)
8+
// 3. Run "install" gradle task in threadposter module (under "other")
9+
// 4. Run "bintrayUpload" gradle task in threadposter module (under "publishing")
10+
511
ext {
612

713
bintrayRepo = "ThreadPoster"
@@ -11,7 +17,7 @@ ext {
1117

1218
publishedGroupId = 'com.techyourchance.threadposter'
1319
artifact = 'threadposter'
14-
libraryVersion = '0.8.2'
20+
libraryVersion = '0.8.3'
1521

1622
libraryDescription = 'Unit testable threading abstraction for Android'
1723

@@ -35,8 +41,8 @@ android {
3541
defaultConfig {
3642
minSdkVersion 16
3743
targetSdkVersion 28
38-
versionCode 3
39-
versionName "0.8.2"
44+
versionCode 4
45+
versionName "0.8.3"
4046
}
4147
buildTypes {
4248
release {

0 commit comments

Comments
 (0)