Skip to content

Commit

Permalink
chore(main): release 0.13.8 (#104)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Jun 18, 2024
1 parent 5543edd commit 21c8e90
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.13.7"
".": "0.13.8"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.13.8](https://github.com/rudderlabs/rudder-json-template-engine/compare/v0.13.7...v0.13.8) (2024-06-18)


### Bug Fixes

* reverse translator json paths ([5543edd](https://github.com/rudderlabs/rudder-json-template-engine/commit/5543edd319295f48b54c7fbe6299767b173fe238))
* reverse translator json paths ([a6b5c2b](https://github.com/rudderlabs/rudder-json-template-engine/commit/a6b5c2b6c9fb753cfc26aa2003828b14c2d21b3e))

## [0.13.7](https://github.com/rudderlabs/rudder-json-template-engine/compare/v0.13.6...v0.13.7) (2024-06-18)


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.13.7",
"version": "0.13.8",
"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/[email protected].7/build/json-template.min.js
Versioned URL: https://cdn.jsdelivr.net/npm/@rudderstack/[email protected].8/build/json-template.min.js

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

0 comments on commit 21c8e90

Please sign in to comment.