CHANGELOG.md in govuk_tech_docs-1.0.0 vs CHANGELOG.md in govuk_tech_docs-1.1.0
- old
+ new
@@ -1,7 +1,14 @@
# Changelog
+## 1.1.0
+
+You can now specify `google_site_verification` in tech-docs.yml. You can use
+this to verify your site in Google Webmaster tools.
+
+https://github.com/alphagov/tech-docs-gem/blob/master/docs/configuration.md#google_site_verification
+
## 1.0.0
The first release of the template as a gem. Most CSS, JS, images and layouts are
now imported from the gem and can be removed from your project.
@@ -24,13 +31,19 @@
@import "govuk_tech_docs";' > source/stylesheets/screen-old-ie.css.scss
echo "require 'govuk_tech_docs'
-TechDocs.configure(self)" > config.rb
+GovukTechDocs.configure(self)" > config.rb
echo "source 'https://rubygems.org'
-gem 'govuk_tech_docs', path: '../govuk_tech_docs'" > Gemfile
+# For faster file watcher updates on Windows:
+gem 'wdm', '~> 0.1.0', platforms: [:mswin, :mingw]
+
+# Windows does not come with time zone data
+gem 'tzinfo-data', platforms: [:mswin, :mingw, :jruby]
+
+gem 'govuk_tech_docs'" > Gemfile
bundle install
```