From 98cc893b725828cbf207246d752215496a7e1d76 Mon Sep 17 00:00:00 2001 From: stoically <29637501+stoically@users.noreply.github.com> Date: Thu, 3 Nov 2022 17:45:54 +0100 Subject: [PATCH] release: v0.9.0-beta.1 (#32) --- CHANGELOG.md | 38 ++++++++++++++++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3dd2a39..cab1bf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,44 @@ All notable changes to this project will be documented in this file. +## [0.9.0-beta.1] - 2022-11-03 + +### Documentation + +- Update README +- Update example +- Update html macro docs +- Add link to example +- Fix node links +- Improve parser docs +- Remove TODO +- Fix attribute value example ([#28](https://github.com/orhun/git-cliff/issues/28)) +- Fix blocks example ([#29](https://github.com/orhun/git-cliff/issues/29)) +- Fix typo ([#30](https://github.com/orhun/git-cliff/issues/30)) + +### Features + +- [**breaking**] Make path_to_string private + +### Miscellaneous Tasks + +- Add rustfmt.toml + +### Refactor + +- [**breaking**] Drop `NodeName::span` method +- Pass block_transform a forked stream +- Move flat tree converter to node method +- Replace extrude with let-else ([#31](https://github.com/orhun/git-cliff/issues/31)) + +### Ci + +- Switch fmt to nightly toolchain + +### Revert + +- Move flat tree converter back into node parser + ## [0.9.0-alpha.1] - 2022-10-21 ### Miscellaneous Tasks diff --git a/Cargo.toml b/Cargo.toml index 19b746f..dd8cc76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "syn-rsx" description = "syn-powered parser for JSX-like TokenStreams" -version = "0.9.0-alpha.1" +version = "0.9.0-beta.1" authors = ["stoically "] keywords = ["syn", "jsx", "rsx", "html", "macro"] edition = "2018"