diff --git a/CHANGELOG.md b/CHANGELOG.md index ef4ba03ed..ed3164a06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,15 @@ project adheres to [Semantic Versioning](http://semver.org). ## [Unreleased] -[Unreleased]: https://github.com/thoughtbot/bourbon/compare/v5.0.0.beta.5...HEAD +[Unreleased]: https://github.com/thoughtbot/bourbon/compare/v5.0.0.beta.6...HEAD + +## [5.0.0-beta.6] - 2016-06-06 + +### Added + +- Added a `value-prefixer` mixin for generating vendor prefixes on values. + +[5.0.0-beta.6]: https://github.com/thoughtbot/bourbon/compare/v5.0.0.beta.5...v5.0.0.beta.6 ## [5.0.0-beta.5] - 2016-03-23 diff --git a/bower.json b/bower.json index 1f9e42abf..4e3b287ad 100644 --- a/bower.json +++ b/bower.json @@ -34,5 +34,5 @@ "type": "git", "url": "https://github.com/thoughtbot/bourbon.git" }, - "version": "5.0.0-beta.5" + "version": "5.0.0-beta.6" } diff --git a/core/_bourbon.scss b/core/_bourbon.scss index 960ded5f8..25308b762 100644 --- a/core/_bourbon.scss +++ b/core/_bourbon.scss @@ -1,4 +1,4 @@ -// Bourbon 5.0.0-beta.5 +// Bourbon 5.0.0-beta.6 // http://bourbon.io // Copyright 2011 thoughtbot, inc. // MIT License diff --git a/lib/bourbon/version.rb b/lib/bourbon/version.rb index c55f2e4c7..7d4abf561 100644 --- a/lib/bourbon/version.rb +++ b/lib/bourbon/version.rb @@ -1,3 +1,3 @@ module Bourbon - VERSION = "5.0.0.beta.5" + VERSION = "5.0.0.beta.6" end diff --git a/package.json b/package.json index f03f82f22..315a9986a 100644 --- a/package.json +++ b/package.json @@ -29,5 +29,5 @@ "scripts": { "test": "bundle exec rake" }, - "version": "5.0.0-beta.5" + "version": "5.0.0-beta.6" }