Skip to content

Commit

Permalink
Version 0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
techyourchance committed Jun 12, 2019
1 parent 2b503c1 commit 0a2c0a5
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions threadposter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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'

Expand All @@ -35,8 +41,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
versionCode 3
versionName "0.8.2"
versionCode 4
versionName "0.8.3"
}
buildTypes {
release {
Expand Down

0 comments on commit 0a2c0a5

Please sign in to comment.