diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bbf45709a..0736a300ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# [9.21.0](https://github.com/harttle/liquidjs/compare/v9.20.1...v9.21.0) (2021-02-04) + + +### Features + +* add `operators` option for custom operators ([75591cd](https://github.com/harttle/liquidjs/commit/75591cd)) +* create trie programmatically in options ([befc33c](https://github.com/harttle/liquidjs/commit/befc33c)) +* export OperatorMap type ([bc87e19](https://github.com/harttle/liquidjs/commit/bc87e19)) +* export Operators from operator.ts ([6a7c280](https://github.com/harttle/liquidjs/commit/6a7c280)) +* rename to defaultOperators and Operators ([8734e2e](https://github.com/harttle/liquidjs/commit/8734e2e)) + ## [9.20.1](https://github.com/harttle/liquidjs/compare/v9.20.0...v9.20.1) (2021-01-24) diff --git a/package-lock.json b/package-lock.json index fc5bf5b1b0..e84deed465 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "liquidjs", - "version": "9.20.1", + "version": "9.21.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 2b2724870b..a9a4c3b3eb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "liquidjs", - "version": "9.20.1", + "version": "9.21.0", "description": "A simple, expressive, safe and Shopify compatible template engine in pure JavaScript.", "main": "dist/liquid.node.cjs.js", "module": "dist/liquid.node.esm.js",