diff --git a/threadposter/build.gradle b/threadposter/build.gradle index b4c5c46..30e8197 100755 --- a/threadposter/build.gradle +++ b/threadposter/build.gradle @@ -2,6 +2,12 @@ apply plugin: 'com.android.library' apply plugin: 'com.jfrog.bintray' apply plugin: 'com.github.dcendents.android-maven' +// Reminder: to upload a new version, do the following: +// 1. Make sure that everything works (incl. manual checks using sample app) +// 2. Update library version identifiers (libraryVersion, versionName, versionCode) +// 3. Run "install" gradle task in threadposter module (under "other") +// 4. Run "bintrayUpload" gradle task in threadposter module (under "publishing") + ext { bintrayRepo = "ThreadPoster" @@ -11,7 +17,7 @@ ext { publishedGroupId = 'com.techyourchance.threadposter' artifact = 'threadposter' - libraryVersion = '0.8.2' + libraryVersion = '0.8.3' libraryDescription = 'Unit testable threading abstraction for Android' @@ -35,8 +41,8 @@ android { defaultConfig { minSdkVersion 16 targetSdkVersion 28 - versionCode 3 - versionName "0.8.2" + versionCode 4 + versionName "0.8.3" } buildTypes { release {