Skip to content

Commit

Permalink
chore(main): release 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jul 2, 2024
1 parent ab652ff commit ce6ef57
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.16.0"
".": "0.17.0"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.17.0](https://github.com/rudderlabs/rudder-json-template-engine/compare/v0.16.0...v0.17.0) (2024-07-02)


### Features

* add support for context var index ([#111](https://github.com/rudderlabs/rudder-json-template-engine/issues/111)) ([5f1d213](https://github.com/rudderlabs/rudder-json-template-engine/commit/5f1d2135d79e2681ccf8f8016ac308d00544a004))
* merge filters and indexes ([#113](https://github.com/rudderlabs/rudder-json-template-engine/issues/113)) ([ab652ff](https://github.com/rudderlabs/rudder-json-template-engine/commit/ab652ffa4b4b6c1ce6a36e373f1bde537813990b))

## [0.16.0](https://github.com/rudderlabs/rudder-json-template-engine/compare/v0.15.0...v0.16.0) (2024-06-25)


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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rudderstack/json-template-engine",
"version": "0.16.0",
"version": "0.17.0",
"homepage": "https://github.com/rudderlabs/rudder-json-template-engine",
"description": "A library for evaluating JSON template expressions.",
"main": "build/index.js",
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ engine.evaluate({ name: 'World' }); // => 'Hello World'
### Use CDN URL directly in the browser
Latest URL: https://cdn.jsdelivr.net/npm/@rudderstack/json-template-engine/build/json-template.min.js
<!-- x-release-please-start-version -->
Versioned URL: https://cdn.jsdelivr.net/npm/@rudderstack/json-template-engine@0.16.0/build/json-template.min.js
Versioned URL: https://cdn.jsdelivr.net/npm/@rudderstack/json-template-engine@0.17.0/build/json-template.min.js

```html
<script type="module">
import { JsonTemplateEngine } from 'https://cdn.jsdelivr.net/npm/@rudderstack/json-template-engine@0.16.0/build/json-template.min.js';
import { JsonTemplateEngine } from 'https://cdn.jsdelivr.net/npm/@rudderstack/json-template-engine@0.17.0/build/json-template.min.js';
const engine = JsonTemplateEngine.createAsSync(`'Hello ' + .name`);
engine.evaluate({ name: 'World' });
</script>
Expand Down

0 comments on commit ce6ef57

Please sign in to comment.