Skip to content

Commit

Permalink
Release version 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vldm committed Jul 18, 2023
1 parent 390fb37 commit 3a238e6
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 2 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,39 @@

All notable changes to this project will be documented in this file.

## [0.11.0] - 2023-07-18

### Chore

- Clippy ci
- Apply fmt fixes
- Add tests for fn binding syntax.

### Documentation

- Doc test formatting


### Features

- Add generics support to node element.
- FnBinding pattern
- Feat: add number support in NodeName attribute
Make NodeName compatible with SGML basic types specification (by adding support of more than one punctuation in series).


### Fix

- Allow wildcard in any element.

### Other

- Update README.md
- Allow wildcard close tag for block elements

- Make block element close wildcard more general


## [0.10.5] - 2023-05-17

### Chore
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rstml"
description = "Rust templating for XML-based formats (HTML, SVG, MathML) implemented on top of proc-macro::TokenStreams"
version = "0.10.6"
version = "0.11.0"
authors = ["vldm <[email protected]>","stoically <[email protected]>"]
keywords = ["syn", "jsx", "rsx", "html", "macro"]
edition = "2018"
Expand Down
1 change: 1 addition & 0 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ commit_parsers = [
{ message = "^[sS]tyle", group = "Styling"},
{ message = "^[tT]est", group = "Testing"},
{ message = "^[rR]elease", skip = true},
{ message = "^Merge pull request", skip = true},
{ message = "^[cC]hore", group = "Chore"},
{ message = "^[fF]ix", group = "Fix"},
{ body = ".*[sS]ecurity", group = "Security"},
Expand Down
2 changes: 1 addition & 1 deletion generate_changelog.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env sh

GIT_CLIFF__CHANGELOG__FOOTER=$(cat CHANGELOG.old.md)
export GIT_CLIFF__CHANGELOG__FOOTER=$(cat CHANGELOG.old.md)
OLD_COMMIT="149109f1420df7a11f5a69e4a9fb90bf57ec4f02"

git cliff -o CHANGELOG.md -- $OLD_COMMIT..HEAD

0 comments on commit 3a238e6

Please sign in to comment.