Skip to content

Commit

Permalink
Prepare for release 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tasomaniac committed Dec 16, 2015
1 parent 4e50fe3 commit 4aa0d78
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 16 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
Change Log
==========

Version 0.2 *(2015-12-16)*
Version 0.3 *(2015-12-16)*
--------------------------

Moved to `.aar` dependency because we have support library dependency which is an `aar`.

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

Maven integration and package name change.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Download
--------

```groovy
compile 'com.tasomaniac:delayed-progress:0.2'
compile 'com.tasomaniac:delayed-progress:0.3'
```

Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].
Expand Down
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.3-SNAPSHOT
VERSION_NAME=0.3

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

Expand Down
13 changes: 0 additions & 13 deletions library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import com.android.builder.core.BuilderConstants

apply plugin: 'com.android.library'

android {
Expand All @@ -20,17 +18,6 @@ android {
}
}

android.libraryVariants.all { variant ->
def name = variant.buildType.name
if (name.equals(BuilderConstants.DEBUG)) {
return; // Skip debug builds.
}
def task = project.tasks.create "jar${name.capitalize()}", Jar
task.dependsOn variant.javaCompile
task.from variant.javaCompile.destinationDir
artifacts.add('archives', task);
}

dependencies {
compile 'com.android.support:support-v4:23.1.1'
}
Expand Down

0 comments on commit 4aa0d78

Please sign in to comment.