Skip to content

Commit 21727c5

Browse files
authored
Merge pull request #40 from sdsmdg/update/1
🎉 Update version to 1.0.0
2 parents 0b52edb + f8fd047 commit 21727c5

File tree

4 files changed

+20
-12
lines changed

4 files changed

+20
-12
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
# Trianglify Releases
22

33
## Latest
4+
* [Version 1.0.0](https://bintray.com/suyashmahar/trianglify/trianglify/1.0.0)
5+
| [Google Play](http://bit.ly/trianglify_mdg)
6+
**First stable release of Trianglify**
7+
* Updated documents so that Trianglify can be seamlessly integrated anywhere
8+
* Fixed bugs in demo app
9+
10+
## Previous
411
* [Version 0.9 beta](https://bintray.com/suyashmahar/trianglify/trianglify/0.9-beta)
512
| [demo apk](https://drive.google.com/open?id=0Bz_2jvdEtUlrWEpxQ2Y2RnJGc1U)
613
* Added custom palette demonstration to demo app
714
* Added method `fillViewCompletely` to check if view is incompletely filled
815
* Fixes many bugs - [#23](https://github.com/sdsmdg/trianglify/issues/23), [#33](https://github.com/sdsmdg/trianglify/issues/33), [#34](https://github.com/sdsmdg/trianglify/issues/34), [#35](https://github.com/sdsmdg/trianglify/issues/35) & [#36](https://github.com/sdsmdg/trianglify/issues/36)
916

10-
## Previous
1117
* [Version 0.8 beta](https://bintray.com/suyashmahar/trianglify/trianglify/0.8-beta)
1218
| [demo apk](https://www.dropbox.com/s/cn85g497nkwmx14/trianglify-release-0.8-beta.apk?dl=0)
1319
* Generation of triangulation on worker thread to prevent UI freezing [#20](https://github.com/sdsmdg/trianglify/issues/20)

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,23 @@
1818

1919
<img src="resources/splash.png" data-canonical-src="resources/default_pattern_explained.jpg"/>
2020

21+
<a href='http://bit.ly/trianglify_mdg'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png' width="200"/></a>
22+
2123
Trianglify is an Android library that helps creates views with beautiful patterns. Trianglify is based on MVP architecture and licensed under MIT license.
2224

2325
# How to Apply
2426

2527
Include following line in the gradle script of your application to include latest release of Trianglify:
2628
```gradle
27-
compile 'com.sdsmdg.kd:trianglify:0.9-beta'
29+
compile 'com.sdsmdg.kd:trianglify:1.0.0'
2830
```
2931

3032
# Latest Release
31-
* [Version 0.9 beta](https://bintray.com/suyashmahar/trianglify/trianglify/0.9-beta)
32-
| [demo apk](https://drive.google.com/open?id=0Bz_2jvdEtUlrWEpxQ2Y2RnJGc1U)
33-
* Added custom palette demonstration to demo app
34-
* Added method `fillViewCompletely` to check if view is incompletely filled
35-
* Fixes many bugs - [#23](https://github.com/sdsmdg/trianglify/issues/23), [#33](https://github.com/sdsmdg/trianglify/issues/33), [#34](https://github.com/sdsmdg/trianglify/issues/34), [#35](https://github.com/sdsmdg/trianglify/issues/35) & [#36](https://github.com/sdsmdg/trianglify/issues/36)
33+
* [Version 1.0.0](https://bintray.com/suyashmahar/trianglify/trianglify/1.0.0)
34+
| [Google Play](http://bit.ly/trianglify_mdg)
35+
**First stable release of Trianglify**
36+
* Updated documents so that Trianglify can be seamlessly integrated anywhere
37+
* Fixed bugs in demo app
3638

3739
For more check complete [change log](/CHANGELOG.md).
3840

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "com.sdsmdg.kd.trianglifyexample"
88
minSdkVersion 16
99
targetSdkVersion 25
10-
versionCode 0
11-
versionName "0.9-beta"
10+
versionCode 1
11+
versionName "1.0.0"
1212
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1313
}
1414
buildTypes {

trianglify/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ext {
77

88
PUBLISH_GROUP_ID = 'com.sdsmdg.kd'
99
PUBLISH_ARTIFACT_ID = 'trianglify'
10-
PUBLISH_VERSION = '0.9-beta'
10+
PUBLISH_VERSION = '1.0.0'
1111

1212
publishedGroupId = 'com.sdsmdg.kd'
1313
libraryName = 'trianglify'
@@ -17,7 +17,7 @@ ext {
1717
gitUrl = 'https://github.com/sdsmdg/trianglify.git'
1818
githubRepository= 'sdsmdg/trianglify'
1919

20-
libraryVersion = '0.9-beta'
20+
libraryVersion = '1.0.0'
2121
libraryDescription = 'Generate beautiful view for android.'
2222

2323
developerId = 'sdsmdg'
@@ -37,7 +37,7 @@ android {
3737
minSdkVersion 16
3838
targetSdkVersion 25
3939
versionCode 0
40-
versionName "0.9-beta"
40+
versionName "1.0.0"
4141

4242
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
4343

0 commit comments

Comments
 (0)