Skip to content

Commit

Permalink
Version 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tshemsedinov committed Aug 31, 2024
1 parent d662bbf commit 2f8b9d8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ Change [ ] to [x] for completed items.

- [ ] tests and linter show no problems (`npm t`)
- [ ] tests are added/updated for bug fixes and new features
- [ ] code is properly formatted (`npm run fmt`)
- [ ] code is properly formatted (`npm run fix`)
- [ ] description of changes is added in CHANGELOG.md
- [ ] update .d.ts typings
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## [Unreleased][unreleased]

## [2.2.1][] - 2024-08-31

- Update eslint to 9.x and prettier with configs
- Add node.js 22 to CI

## [2.2.0][] - 2024-03-27

- Add browser support
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metaschema",
"version": "2.2.0",
"version": "2.2.1",
"author": "Timur Shemsedinov <[email protected]>",
"description": "Metadata Schema and Interface Definition Language (IDL)",
"license": "MIT",
Expand Down Expand Up @@ -41,7 +41,7 @@
"test": "npm run lint && npm run types && metatests test/",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\""
"fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\""
},
"engines": {
"node": "18 || 20 || 21 || 22"
Expand Down

0 comments on commit 2f8b9d8

Please sign in to comment.