Skip to content
This repository has been archived by the owner on Dec 24, 2020. It is now read-only.

Update the BCD package to v0.0.37. #84

Merged
merged 3 commits into from
Jun 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Add a Rake task that walks the user through updating the mdn-browser-compat-data package. ([#83])

### Changed
- Upgrade the dataset to `0.0.36`. ([#77])
- Upgrade the dataset to `0.0.37`. ([#77], [#84])

### Fixed
- Made the `check:check_mdn_bcd_version` task fail only when the local version of the package differed from the version defined in the Rails application config. ([#81])

## [0.5.0] - 2018-05-17
### Added
Expand Down Expand Up @@ -117,7 +120,9 @@ First tagged release, includes some basic functionality.
[#67]: https://github.com/connorshea/mdn-compat-data-explorer/pull/67
[#72]: https://github.com/connorshea/mdn-compat-data-explorer/pull/72
[#77]: https://github.com/connorshea/mdn-compat-data-explorer/pull/77
[#81]: https://github.com/connorshea/mdn-compat-data-explorer/pull/81
[#83]: https://github.com/connorshea/mdn-compat-data-explorer/pull/83
[#84]: https://github.com/connorshea/mdn-compat-data-explorer/pull/84

[Unreleased]: https://github.com/connorshea/mdn-compat-data-explorer/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/connorshea/mdn-compat-data-explorer/compare/v0.4.0...v0.5.0
Expand Down
2 changes: 1 addition & 1 deletion config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Application < Rails::Application
config.load_defaults 5.2

# Set the version of the MDN BCD Package
config.mdn_bcd_version = '0.0.36'
config.mdn_bcd_version = '0.0.37'

Rails.application.config.assets.configure do |env|
AutoprefixerRails.uninstall env
Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/update.rake
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ namespace :update do

puts ""
puts "Open 'CHANGELOG.md', add the PR link and also add the following line:"
puts "- Upgrade the dataset to #{latest_version}. ([#000])"
puts "- Upgrade the dataset to `#{latest_version}`. ([#000])"
puts "Do you want to open 'CHANGELOG.md' in VSCode? (y/n)"

case STDIN.gets.slice(0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"private": true,
"dependencies": {
"chart.js": "^2.7.2",
"mdn-browser-compat-data": "0.0.36"
"mdn-browser-compat-data": "0.0.37"
}
}
2 changes: 1 addition & 1 deletion public/data.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ extend@3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"

mdn-browser-compat-data@0.0.36:
version "0.0.36"
resolved "https://registry.yarnpkg.com/mdn-browser-compat-data/-/mdn-browser-compat-data-0.0.36.tgz#d347c618b648981fd0310035e556fd6871fde2fe"
mdn-browser-compat-data@0.0.37:
version "0.0.37"
resolved "https://registry.yarnpkg.com/mdn-browser-compat-data/-/mdn-browser-compat-data-0.0.37.tgz#9d3899b965042a75ac57b461f6bf24dfac329758"
dependencies:
extend "3.0.1"

Expand Down