diff --git a/CHANGELOG.md b/CHANGELOG.md index f4fafa032..b8871fc48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,29 @@ project adheres to [Semantic Versioning](http://semver.org). ## [Unreleased (`master`)][unreleased] +Nothing at the moment. + +[unreleased]: https://github.com/thoughtbot/bourbon/compare/v6.0.0...HEAD + +## [7.0.0] - 2020-03-09 + ### Added - Improved error handling of unsupported font file formats in the `font-face` - mixin (supported formats are `eot`, `ttf`, `svg`, `woff2`, and `woff`). + mixin (supported formats are `woff2` and `woff`). - CSS `var()` and `env()` functions are now accepted as values in the - `position`, and `size` mixins. + `position` and `size` mixins. -[unreleased]: https://github.com/thoughtbot/bourbon/compare/v6.0.0...HEAD +### Changed + +- Updated `thor` from 0.x to 1.x + +### Removed + +- The `font-face` mixin no longer supports `ttf`, `svg`, and `eot` + font file formats. + +[7.0.0]: https://github.com/thoughtbot/bourbon/compare/v6.0.0...v7.0.0 ## [6.0.0] - 2019-07-10 diff --git a/core/_bourbon.scss b/core/_bourbon.scss index f923af038..cb541bb1c 100644 --- a/core/_bourbon.scss +++ b/core/_bourbon.scss @@ -1,4 +1,4 @@ -// Bourbon 6.0.0 +// Bourbon 7.0.0 // https://www.bourbon.io/ // Copyright 2011-2020 thoughtbot, inc. // MIT License diff --git a/lib/bourbon/version.rb b/lib/bourbon/version.rb index 6340a1cd6..d3037d998 100644 --- a/lib/bourbon/version.rb +++ b/lib/bourbon/version.rb @@ -1,3 +1,3 @@ module Bourbon - VERSION = "6.0.0" + VERSION = "7.0.0" end diff --git a/package-lock.json b/package-lock.json index a4a880772..8cc9b4ef3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "bourbon", - "version": "6.0.0", + "version": "7.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index df322774c..a9eccec93 100644 --- a/package.json +++ b/package.json @@ -37,5 +37,5 @@ "stylelint": "npx stylelint 'core/**/*.scss'", "test": "bundle exec rake" }, - "version": "6.0.0" + "version": "7.0.0" }