Skip to content

Commit

Permalink
Prepare for release 0.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
tasomaniac committed Jul 15, 2015
1 parent ca544ba commit 8092b98
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Change Log
==========

Version 0.2 *(2015-07-15)*
----------------------------

Maven integration and package name change.

It is now under `com.tasomaniac.android.widget` package.
35 changes: 34 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ ContentLoadingProgressDialog

ProgressDialog that waits a minimum time to be dismissed before showing. Once visible, the ProgressDialog will be visible for a minimum amount of time to avoid "flashes" in the UI.

##Usage
Usage
-----

You can use it just like `ProgressDialog`. Just use `show()` and `dismiss()` appropriately and it will handle the rest.

Expand Down Expand Up @@ -36,3 +37,35 @@ The library also supports setter functions for easy usage.
.show();


Download
--------

```groovy
compile 'com.tasomaniac:contentloadingprogressdialog:0.2'
```

Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].



License
-------

Copyright (C) 2015 Said Tahsin Dane

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.




[snap]: https://oss.sonatype.org/content/repositories/snapshots/
13 changes: 13 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Releasing
========

1. Change the version in `gradle.properties` to a non-SNAPSHOT version.
2. Update the `CHANGELOG.md` for the impending release.
3. Update the `README.md` with the new version.
4. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version)
5. `git tag -a X.Y.X -m "Version X.Y.Z"` (where X.Y.Z is the new version)
6. `./gradlew clean uploadArchives`
7. Update the `gradle.properties` to the next SNAPSHOT version.
8. `git commit -am "Prepare next development version."`
9. `git push && git push --tags`
10. Visit [Sonatype Nexus](https://oss.sonatype.org/) and promote the artifact.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.tasomaniac
VERSION_NAME=0.2-SNAPSHOT
VERSION_NAME=0.2

POM_DESCRIPTION=ProgressDialog that waits a minimum time to be dismissed before showing. Once visible, the ProgressDialog will be visible for a minimum amount of time to avoid "flashes" in the UI.

Expand Down

0 comments on commit 8092b98

Please sign in to comment.