diff --git a/CHANGELOG.md b/CHANGELOG.md index e4963fe0..fdb0f6b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.16.0 + +- Add Django template + # 0.15.1 - Fix copyright logo in Ruby version diff --git a/README.md b/README.md index 61799978..b1691ccc 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ At present this generates 9 output formats: 7. a tarball containing plain HTML and assets 8. a tarball containing EJS (Embedded JavaScript) templates 9. a JAR file containing assets (but no templates) structured as per [WebJars](http://www.webjars.org/) +10. a tarball containing Django templates ### Gem version @@ -72,6 +73,10 @@ To generate the folder of Embedded JavaScript templates run `bundle exec rake bu To generate a JAR file of assets in WebJar format run `bundle exec rake build:webjar`. This will produce a JAR file in the `pkg` directory. +### Django version + +To generate the folder of Django templates run `bundle exec rake build:django`. This will produce a tarball in the `pkg` directory. + ## Publishing Accepted contributions (pull requests merged into master) will run builds for the Gem, Play and Mustache versions. These will then update the following: diff --git a/lib/govuk_template/version.rb b/lib/govuk_template/version.rb index 65c208ed..36ef70c7 100644 --- a/lib/govuk_template/version.rb +++ b/lib/govuk_template/version.rb @@ -1,3 +1,3 @@ module GovukTemplate - VERSION = "0.15.1" + VERSION = "0.16.0" end