Skip to content

Commit 2ea80cf

Browse files
committed
v4.0.7
1 parent e1a4616 commit 2ea80cf

File tree

15 files changed

+31
-14
lines changed

15 files changed

+31
-14
lines changed

handlebars-guava-cache/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.jknack</groupId>
77
<artifactId>handlebars.java</artifactId>
8-
<version>4.0.7-SNAPSHOT</version>
8+
<version>4.0.7</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

handlebars-helpers/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.jknack</groupId>
66
<artifactId>handlebars.java</artifactId>
7-
<version>4.0.7-SNAPSHOT</version>
7+
<version>4.0.7</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

handlebars-humanize/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.jknack</groupId>
66
<artifactId>handlebars.java</artifactId>
7-
<version>4.0.7-SNAPSHOT</version>
7+
<version>4.0.7</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

handlebars-jackson2/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.jknack</groupId>
66
<artifactId>handlebars.java</artifactId>
7-
<version>4.0.7-SNAPSHOT</version>
7+
<version>4.0.7</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

handlebars-jdk8-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>handlebars.java</artifactId>
88
<groupId>com.github.jknack</groupId>
9-
<version>4.0.7-SNAPSHOT</version>
9+
<version>4.0.7</version>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

handlebars-markdown/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.jknack</groupId>
66
<artifactId>handlebars.java</artifactId>
7-
<version>4.0.7-SNAPSHOT</version>
7+
<version>4.0.7</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

handlebars-maven-plugin-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.jknack</groupId>
66
<artifactId>handlebars.java</artifactId>
7-
<version>4.0.7-SNAPSHOT</version>
7+
<version>4.0.7</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

handlebars-maven-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.jknack</groupId>
66
<artifactId>handlebars.java</artifactId>
7-
<version>4.0.7-SNAPSHOT</version>
7+
<version>4.0.7</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

handlebars-proto/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.jknack</groupId>
66
<artifactId>handlebars.java</artifactId>
7-
<version>4.0.7-SNAPSHOT</version>
7+
<version>4.0.7</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

handlebars-springmvc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.jknack</groupId>
66
<artifactId>handlebars.java</artifactId>
7-
<version>4.0.7-SNAPSHOT</version>
7+
<version>4.0.7</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

handlebars/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.jknack</groupId>
77
<artifactId>handlebars.java</artifactId>
8-
<version>4.0.7-SNAPSHOT</version>
8+
<version>4.0.7</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

handlebars/src/main/java/com/github/jknack/handlebars/helper/ConditionalHelpers.java

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/**
2+
* Copyright (c) 2012-2015 Edgar Espina
3+
*
4+
* This file is part of Handlebars.java.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
118
package com.github.jknack.handlebars.helper;
219

320
import com.github.jknack.handlebars.Handlebars;

integration-tests/handlebars-without-rhino/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.jknack</groupId>
66
<artifactId>integration-tests</artifactId>
7-
<version>4.0.7-SNAPSHOT</version>
7+
<version>4.0.7</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

integration-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.jknack</groupId>
66
<artifactId>handlebars.java</artifactId>
7-
<version>4.0.7-SNAPSHOT</version>
7+
<version>4.0.7</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.github.jknack</groupId>
66
<artifactId>handlebars.java</artifactId>
7-
<version>4.0.7-SNAPSHOT</version>
7+
<version>4.0.7</version>
88
<packaging>pom</packaging>
99

1010
<name>Handlebars.java</name>

0 commit comments

Comments
 (0)