Skip to content

Commit

Permalink
Release v2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Seth Kinast committed Nov 20, 2014
1 parent 073a4e2 commit 48f302b
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Change Log

### v2.5.1 (2014/11/20 00:58 +00:00)
- [#522](https://github.com/linkedin/dustjs/pull/522) Fix the use of a multi-level object key (e.g. foo.bar) as the key for an index lookup inside non-self-closing tags. (@sethkinast)

### v2.5.0 (2014/11/04 00:15 +00:00)
- [#515](https://github.com/linkedin/dustjs/pull/515) Remove the warning log when you attach a new Stream event (@sethkinast)
- [#513](https://github.com/linkedin/dustjs/pull/513) Treat compiled body functions as blocks to render instead of functions to evaluate. Dust body functions are now flagged with .___dustBody to differentiate them from functions set in the context. (@sethkinast)
Expand Down
Binary file added archive/dust-2.5.1.tar.gz
Binary file not shown.
Binary file added archive/dust-2.5.1.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dustjs-linkedin",
"version": "2.5.0",
"version": "2.5.1",
"main": "dist/dust-full.min.js",
"devDependencies": {
"pegjs": "0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion dist/dust-core.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Dust - Asynchronous Templating - v2.5.0
/*! Dust - Asynchronous Templating - v2.5.1
* http://linkedin.github.io/dustjs/
* Copyright (c) 2014 Aleksander Williams; Released under the MIT License */
(function(root) {
Expand Down
2 changes: 1 addition & 1 deletion dist/dust-core.min.js

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

4 changes: 2 additions & 2 deletions dist/dust-full.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Dust - Asynchronous Templating - v2.5.0
/*! Dust - Asynchronous Templating - v2.5.1
* http://linkedin.github.io/dustjs/
* Copyright (c) 2014 Aleksander Williams; Released under the MIT License */
(function(root) {
Expand Down Expand Up @@ -1005,7 +1005,7 @@
peg$c42 = { type: "literal", value: "~", description: "\"~\"" },
peg$c43 = function(k) { return ["special", k].concat([['line', line()], ['col', column()]]) },
peg$c44 = { type: "other", description: "identifier" },
peg$c45 = function(p) { var arr = ["path"].concat(p); arr.text = p[1].join('.'); return arr; },
peg$c45 = function(p) { var arr = ["path"].concat(p); arr.text = p[1].join('.').replace(/,line,\d+,col,\d+/g,''); return arr; },
peg$c46 = function(k) { var arr = ["key", k]; arr.text = k; return arr; },
peg$c47 = { type: "other", description: "number" },
peg$c48 = function(n) { return ['literal', n]; },
Expand Down
4 changes: 2 additions & 2 deletions dist/dust-full.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dustjs-linkedin",
"title": "Dust - Asynchronous Templating",
"version": "2.5.0",
"version": "2.5.1",
"author": {
"name": "Aleksander Williams",
"url": "http://akdubya.github.com/dustjs"
Expand Down

0 comments on commit 48f302b

Please sign in to comment.