Skip to content

Commit

Permalink
chore(*): bump to release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Oct 5, 2021
1 parent 4d5b13a commit dab9b00
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 12 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Change Log
==========

Version 1.2.0
-------------

## Dependencies:
- srt 1.4.4
- openssl 1.1.1k

## Features:
- New API guide

Version 1.1.0
-------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ allprojects {
}
dependencies {
implementation 'com.github.ThibaultBee:srtdroid:1.1.0'
implementation 'com.github.ThibaultBee:srtdroid:1.2.0'
}
```

Expand Down
15 changes: 10 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
/**
* Warning: New kotlin version (1.4.30) takes too long too build and it causes jitpack build timeout...
*/
ext.kotlin_version = '1.4.20'
ext.dokka_version = '1.5.0'
ext {
versionCode = 2
versionName = "1.2.0"

/**
* Warning: New kotlin version (1.4.30) takes too long too build and it causes jitpack build timeout...
*/
kotlin_version = '1.4.20'
dokka_version = '1.5.0'
}
repositories {
google()
jcenter()
Expand Down
4 changes: 2 additions & 2 deletions chat/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "com.github.thibaultbee.srtdroid.chat"
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.1.0"
versionCode rootProject.versionCode
versionName rootProject.versionName

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
4 changes: 2 additions & 2 deletions examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId "com.github.thibaultbee.srtdroid.examples"
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.1.0"
versionCode rootProject.versionCode
versionName rootProject.versionName

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
4 changes: 2 additions & 2 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
defaultConfig {
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.1.0"
versionCode rootProject.versionCode
versionName rootProject.versionName

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
Expand Down

0 comments on commit dab9b00

Please sign in to comment.