Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jens Driller committed May 4, 2016
1 parent 842d5ae commit e023542
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Change Log
==========

Version 1.1.0 *(2016/05/04)*
--------------------------
* Add support for product flavors (#1)

Version 1.0.1 *(2016/02/20)*
--------------------------
* Fix artifact name
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,22 +104,22 @@ Build script snippet for use in all Gradle versions:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath "gradle.plugin.com.jenzz:buildconstants:1.0.1"
classpath 'gradle.plugin.com.jenzz:buildconstants:1.1.0'
}
}
apply plugin: "com.jenzz.buildconstants"
apply plugin: 'com.jenzz.buildconstants'
```

Build script snippet for new, incubating, plugin mechanism introduced in Gradle 2.1:

```groovy
plugins {
id "com.jenzz.buildconstants" version "1.0.1"
id 'com.jenzz.buildconstants' version '1.1.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ allprojects {
}

ext {
pluginVersion = '1.0.1'
pluginVersion = '1.1.0'
}

0 comments on commit e023542

Please sign in to comment.