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

Commit 49af1de

Browse files
authored
Merge pull request #84 from connorshea/update-mdn-package-0-0-37
Update the BCD package to v0.0.37.
2 parents a70a488 + 31652da commit 49af1de

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88
- Add a Rake task that walks the user through updating the mdn-browser-compat-data package. ([#83])
99

1010
### Changed
11-
- Upgrade the dataset to `0.0.36`. ([#77])
11+
- Upgrade the dataset to `0.0.37`. ([#77], [#84])
12+
13+
### Fixed
14+
- 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])
1215

1316
## [0.5.0] - 2018-05-17
1417
### Added
@@ -117,7 +120,9 @@ First tagged release, includes some basic functionality.
117120
[#67]: https://github.com/connorshea/mdn-compat-data-explorer/pull/67
118121
[#72]: https://github.com/connorshea/mdn-compat-data-explorer/pull/72
119122
[#77]: https://github.com/connorshea/mdn-compat-data-explorer/pull/77
123+
[#81]: https://github.com/connorshea/mdn-compat-data-explorer/pull/81
120124
[#83]: https://github.com/connorshea/mdn-compat-data-explorer/pull/83
125+
[#84]: https://github.com/connorshea/mdn-compat-data-explorer/pull/84
121126

122127
[Unreleased]: https://github.com/connorshea/mdn-compat-data-explorer/compare/v0.5.0...HEAD
123128
[0.5.0]: https://github.com/connorshea/mdn-compat-data-explorer/compare/v0.4.0...v0.5.0

config/application.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Application < Rails::Application
1212
config.load_defaults 5.2
1313

1414
# Set the version of the MDN BCD Package
15-
config.mdn_bcd_version = '0.0.36'
15+
config.mdn_bcd_version = '0.0.37'
1616

1717
Rails.application.config.assets.configure do |env|
1818
AutoprefixerRails.uninstall env

lib/tasks/update.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ namespace :update do
7575

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

8181
case STDIN.gets.slice(0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"private": true,
44
"dependencies": {
55
"chart.js": "^2.7.2",
6-
"mdn-browser-compat-data": "0.0.36"
6+
"mdn-browser-compat-data": "0.0.37"
77
}
88
}

public/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ [email protected]:
3434
version "3.0.1"
3535
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
3636

37-
38-
version "0.0.36"
39-
resolved "https://registry.yarnpkg.com/mdn-browser-compat-data/-/mdn-browser-compat-data-0.0.36.tgz#d347c618b648981fd0310035e556fd6871fde2fe"
37+
38+
version "0.0.37"
39+
resolved "https://registry.yarnpkg.com/mdn-browser-compat-data/-/mdn-browser-compat-data-0.0.37.tgz#9d3899b965042a75ac57b461f6bf24dfac329758"
4040
dependencies:
4141
extend "3.0.1"
4242

0 commit comments

Comments
 (0)