Skip to content

Commit

Permalink
v1.12.1 / 2021-11-10
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed Nov 10, 2021
1 parent af7f1b7 commit fc3879b
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Tumblr Savior Changelog

## v1.12.1 / 2021-11-10
* [`CI`] Only test on node v16
* [`CI`] Also run `addons-linter` when testing
* [`package.json`] Move `eslint` into it's own command
* [`package.json`] Add `addons-linter`

## v1.12.0 / 2021-11-10
* Update `CSS_CLASS_MAP` -- https://assets.tumblr.com/pop/cssmap-84fedc5a.json
* [`.gitignore`] Add `package-lock.json`
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"name": "tumblr-savior",
"version": "1.12.0",
"version": "1.12.1",
"description": "Would you like to control what shows up on your dashboard? Tumblr Savior is here to save you!",
"scripts": {
"test": "eslint src"
"addons-linter": "addons-linter src",
"eslint": "eslint src",
"test": "npm run addons-linter && npm run eslint"
},
"repository": {
"type": "git",
Expand All @@ -21,6 +23,7 @@
},
"homepage": "https://github.com/bjornstar/Tumblr-Savior#readme",
"devDependencies": {
"addons-linter": "^4.1.0",
"eslint": "^8.2.0"
}
}
2 changes: 1 addition & 1 deletion src/data/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ const defaultSettings = {
'show_notice': true,
'show_tags': true,
'show_words': true,
'version': '1.12.0'
'version': '1.12.1'
}; // Initialize default values.
2 changes: 1 addition & 1 deletion src/data/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const defaultSettings = {
'show_notice': true,
'show_tags': true,
'show_words': true,
'version': '1.12.0'
'version': '1.12.1'
}; // Initialize default values.

const BASE_CONTAINER_ID = 'base-container';
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Tumblr Savior",
"version": "1.12.0",
"version": "1.12.1",
"description": "Would you like to control what shows up on your dashboard? Tumblr Savior is here to save you!",
"background": {
"scripts": [ "data/defaults.js", "lib/main.js" ]
Expand Down

0 comments on commit fc3879b

Please sign in to comment.