Skip to content

Commit

Permalink
v5.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
miripiruni committed Mar 23, 2016
1 parent 8c404e6 commit 71600bd
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# BEM-XJST Changelog

# 2016-03-24, [v5.1.1](https://github.com/bem/bem-xjst/compare/v5.1.0...v5.1.1), @miripiruni

## Fix rendering mixes for namesake elems

Should support mixing namesake elements of different blocks

Example. Template:

```js
block('b1').elem('elem')(
mix()({ block: 'b2', elem: 'elem' })
);
```

v5.1.0 result (bug):
```js
<div class="b1__elem"></div>
```

v5.1.1 result (fixed):
```js
<div class="b1__elem b2__elem"></div>
```

# 2016-01-29, [v5.0.0](https://github.com/bem/bem-xjst/compare/v4.3.3...v5.0.0), @miripiruni
**BEMHTML breaking changes**: behavior mods and elemMods BEMJSON fields are changed.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bem-xjst",
"version": "5.1.0",
"version": "5.1.1",
"bin": {
"bem-xjst": "bin/bem-xjst"
},
Expand Down

0 comments on commit 71600bd

Please sign in to comment.