Skip to content

Commit

Permalink
Create 1.2.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ultraq committed Jun 23, 2014
1 parent 9f0af3c commit 027dcdb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
6 changes: 1 addition & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ Changelog
library.
- Added a `layout:substituteby` processor which works much like `layout:include`,
but with the behaviour of Thymeleaf's `th:substituteby` ([#21](https://github.com/ultraq/thymeleaf-layout-dialect/issues/21))
- Updated Thymeleaf dependency from version 2.0.15 to 2.0.17.

### 1.0.6
- Added a help/documentation file so that this dialect will appear in content
Expand All @@ -86,7 +85,6 @@ Changelog
decorator `<title>`).
- Made it so that content outside the decorator page's `<html>` element (like
IE conditional comments) are included in the resulting page ([#10](https://github.com/ultraq/thymeleaf-layout-dialect/issues/10))
- Updated Thymeleaf dependency from version 2.0.13 to 2.0.15.

### 1.0.4
- Fixed enforcing of `layout:decorator` element being in the root element,
Expand All @@ -96,7 +94,6 @@ Changelog
like m2eclipse.
- Fix a `ClassCastException` for cases when `layout:include` was used to
include entire pages ([#7](https://github.com/ultraq/thymeleaf-layout-dialect/issues/7))
- Updated Thymeleaf dependency from version 2.0.11 to 2.0.13.

### 1.0.3
- Added a `layout:include` attribute which works like `th:include` but allows
Expand All @@ -106,8 +103,7 @@ Changelog
- Removed the restriction that the `layout:decorator` tag appear in an HTML
element since Thymeleaf 2.0.10 relaxed that restriction too (tag must still
appear in the root element of your page however) ([#4](https://github.com/ultraq/thymeleaf-layout-dialect/issues/4))
- Updated Thymeleaf dependency from version 2.0.8 to 2.0.11 for the above issue
due to a required API change in 2.0.11.
- Updated Thymeleaf dependency to 2.0.11 for a required API change.

### 1.0.2
- Allow a decorator and content pages to contain just a `<head>` section, or
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ all to help improve code reuse. If you've ever used SiteMesh or JSF with
Facelets, then the concepts of this library will be very familiar to you.

- Current version: 1.2.5
- Released: ?? ??? 2014
- Released: 23 June 2014

This version is for Thymeleaf 2.1. Check out the [master-thymeleaf-2.0 branch](https://github.com/ultraq/thymeleaf-layout-dialect/tree/master-thymeleaf-2.0)
for a version of the Layout Dialect that supports Thymeleaf 2.0.
Expand All @@ -17,7 +17,7 @@ Requirements
------------

- Java 6
- Thymeleaf 2.1 (2.1.2 and its dependencies included)
- Thymeleaf 2.1 (2.1.3 and its dependencies included)


Installation
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ project.sourceCompatibility = '1.6'

project.group = 'nz.net.ultraq.thymeleaf'
project.artifact = 'thymeleaf-layout-dialect'
project.version = '1.2.5-SNAPSHOT'
project.version = '1.2.5'
project.year = '2012'
project.contributors = [
[
Expand All @@ -47,11 +47,11 @@ project.contributors = [

dependencies {
compile(
'org.thymeleaf:thymeleaf:2.1.2.RELEASE'
'org.thymeleaf:thymeleaf:2.1.3.RELEASE'
)
testCompile(
'junit:junit:4.11',
'org.thymeleaf:thymeleaf-testing:2.1.2.RELEASE'
'org.thymeleaf:thymeleaf-testing:2.1.3.RELEASE'
)
testRuntime(
'net.sourceforge.nekohtml:nekohtml:1.9.18'
Expand Down

0 comments on commit 027dcdb

Please sign in to comment.