Skip to content

Commit c5535b0

Browse files
committed
Release v0.1.1
1 parent 85fba83 commit c5535b0

File tree

5 files changed

+22
-14
lines changed

5 files changed

+22
-14
lines changed

.idea/libraries/rules_0_5.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/runner_0_5.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ You can download Linkable Text Sample application on Google Play.
77
[![Get it on Google Play](http://www.android.com/images/brand/get_it_on_play_logo_small.png)](https://play.google.com/store/apps/details?id=com.github.fobid.linkabletext.sample)
88

99
# Download
10-
Download [the latest JAR](https://repo1.maven.org/maven2/com/github/fobid/linkabletext/0.1.0/linkabletext-0.1.0.aar) or grab via Maven:
10+
Download [the latest JAR](https://repo1.maven.org/maven2/com/github/fobid/linkabletext/0.1.1/linkabletext-0.1.1.aar) or grab via Maven:
1111
```
1212
<dependency>
1313
<groupId>com.github.fobid</groupId>
1414
<artifactId>linkable-text</artifactId>
15-
<version>0.1.0</version>
15+
<version>0.1.1</version>
1616
</dependency>
1717
```
1818
or Gradle:
1919
```
20-
compile 'com.github.fobid:linkable-text:0.1.0'
20+
compile 'com.github.fobid:linkable-text:0.1.1'
2121
```
2222

2323
# Usage
@@ -39,5 +39,5 @@ See the License for the specific language governing permissions and
3939
limitations under the License.
4040
```
4141

42-
[release-image]: https://img.shields.io/badge/release-v0.1.0-lightgrey.svg
43-
[release-url]: https://github.com/fobid/linkable-text-android/releases/tag/v0.1.0
42+
[release-image]: https://img.shields.io/badge/release-v0.1.1-lightgrey.svg
43+
[release-url]: https://github.com/fobid/linkable-text-android/releases/tag/v0.1.1

linkable-text/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'com.jfrog.bintray'
33
apply plugin: 'com.github.dcendents.android-maven'
44
apply plugin: 'signing'
55

6-
version = '0.1.0'
6+
version = '0.1.1'
77

88
def siteUrl = 'https://github.com/fobid/linkable-text-android' // Homepage URL of the library
99
def gitUrl = 'https://github.com/fobid/linkable-text-android.git' // Git repository URL
@@ -16,7 +16,7 @@ android {
1616
defaultConfig {
1717
minSdkVersion 9
1818
targetSdkVersion 24
19-
versionCode 1
19+
versionCode 2
2020
versionName version
2121

2222
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
@@ -110,12 +110,12 @@ bintray {
110110
sign = true //Determines whether to GPG sign the files. The default is false
111111
passphrase = properties.getProperty("bintray.gpg.password") //Optional. The passphrase for GPG signing'
112112
}
113-
// mavenCentralSync {
114-
// sync = true //Optional (true by default). Determines whether to sync the version to Maven Central.
115-
// user = properties.getProperty("bintray.oss.user") //OSS user token
116-
// password = properties.getProperty("bintray.oss.password") //OSS user password
117-
// close = '1' //Optional property. By default the staging repository is closed and artifacts are released to Maven Central. You can optionally turn this behaviour off (by puting 0 as value) and release the version manually.
118-
// }
113+
mavenCentralSync {
114+
sync = true //Optional (true by default). Determines whether to sync the version to Maven Central.
115+
user = properties.getProperty("bintray.oss.user") //OSS user token
116+
password = properties.getProperty("bintray.oss.password") //OSS user password
117+
close = '1' //Optional property. By default the staging repository is closed and artifacts are released to Maven Central. You can optionally turn this behaviour off (by puting 0 as value) and release the version manually.
118+
}
119119
}
120120
}
121121
}

0 commit comments

Comments
 (0)