Skip to content

Commit e023542

Browse files
author
Jens Driller
committed
v1.1.0
1 parent 842d5ae commit e023542

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Change Log
22
==========
33

4+
Version 1.1.0 *(2016/05/04)*
5+
--------------------------
6+
* Add support for product flavors (#1)
7+
48
Version 1.0.1 *(2016/02/20)*
59
--------------------------
610
* Fix artifact name

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,22 +104,22 @@ Build script snippet for use in all Gradle versions:
104104
buildscript {
105105
repositories {
106106
maven {
107-
url "https://plugins.gradle.org/m2/"
107+
url 'https://plugins.gradle.org/m2/'
108108
}
109109
}
110110
dependencies {
111-
classpath "gradle.plugin.com.jenzz:buildconstants:1.0.1"
111+
classpath 'gradle.plugin.com.jenzz:buildconstants:1.1.0'
112112
}
113113
}
114114
115-
apply plugin: "com.jenzz.buildconstants"
115+
apply plugin: 'com.jenzz.buildconstants'
116116
```
117117

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

120120
```groovy
121121
plugins {
122-
id "com.jenzz.buildconstants" version "1.0.1"
122+
id 'com.jenzz.buildconstants' version '1.1.0'
123123
}
124124
```
125125

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ allprojects {
1414
}
1515

1616
ext {
17-
pluginVersion = '1.0.1'
17+
pluginVersion = '1.1.0'
1818
}

0 commit comments

Comments
 (0)