Skip to content

Commit 156fcff

Browse files
committedNov 16, 2023
v1.17.0
1 parent ab8791b commit 156fcff

File tree

4 files changed

+5658
-3391
lines changed

4 files changed

+5658
-3391
lines changed
 

‎CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
Version 1.17.0, release 2023-11-16
2+
----------------------------------
3+
Major improvements:
4+
* Add string position of tokens in token trees by @synga-nl in https://github.com/twigjs/twig.js/pull/859
5+
* Allow multiple spaces after elseif statement. by @antoineveldhoven in https://github.com/twigjs/twig.js/pull/870
6+
* Make is empty return false for boolean true. by @antoineveldhoven in https://github.com/twigjs/twig.js/pull/869
7+
* Add support for spaceship operator by @antoineveldhoven in https://github.com/twigjs/twig.js/pull/873
8+
* Allow colon inside Twig.expression.type.key.brackets. by @antoineveldhoven in https://github.com/twigjs/twig.js/pull/879
9+
* Support variables in slice filter shorthand by @antoineveldhoven in https://github.com/twigjs/twig.js/pull/881
10+
11+
Minor improvements:
12+
* Bump @babel/traverse from 7.12.5 to 7.23.2 by @dependabot in https://github.com/twigjs/twig.js/pull/877
13+
114
Version 1.16.0, release 2023-02-27
215
----------------------------------
316
Major improvements:

‎package-lock.json

+5,643-3,389
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "John Roepke <john@justjohn.us> (http://john.sh/)",
33
"name": "twig",
44
"description": "JS port of the Twig templating language.",
5-
"version": "1.16.0",
5+
"version": "1.17.0",
66
"homepage": "https://github.com/twigjs/twig.js",
77
"license": "BSD-2-Clause",
88
"licenses": [

‎src/twig.factory.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file handles creating the Twig library
44
module.exports = function factory() {
55
const Twig = {
6-
VERSION: '1.16.0'
6+
VERSION: '1.17.0'
77
};
88

99
require('./twig.core')(Twig);

0 commit comments

Comments
 (0)
Please sign in to comment.