diff --git a/CHANGELOG.md b/CHANGELOG.md index d2a7717..d767b22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [0.2.1] - 2024-07-01 + +### Bug Fixes +- escape ampersands in text +([daba56b](https://github.com/tomcur/termsnap/commit/daba56b69bc6b9fedaab5bd05f7ba12d09beb91a)) + + +### Documentation +- *(lib)* add usage example +([9befca8](https://github.com/tomcur/termsnap/commit/9befca8f3584e882a5b7727bf2c149529001e77e)) + + +### Other +- generate examples +([343bd55](https://github.com/tomcur/termsnap/commit/343bd5585da81782bab799549da43f1a3a75c9fd)) +- format +([407dcba](https://github.com/tomcur/termsnap/commit/407dcba62f699cda599a38dbb90c200ae4f05799)) + + ## [0.2.0] - 2024-07-01 ### Breaking diff --git a/Cargo.lock b/Cargo.lock index ae5bfef..3aa2f6b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -488,7 +488,7 @@ dependencies = [ [[package]] name = "termsnap" -version = "0.2.0" +version = "0.2.1" dependencies = [ "alacritty_terminal", "anyhow", @@ -501,7 +501,7 @@ dependencies = [ [[package]] name = "termsnap-lib" -version = "0.2.0" +version = "0.2.1" dependencies = [ "alacritty_terminal", ] diff --git a/Cargo.toml b/Cargo.toml index 28e546a..0bc53d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "termsnap" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "Create SVGs from terminal output" keywords = ["terminal", "screenshot", "ansi", "svg", "vector-graphics"] @@ -24,4 +24,4 @@ clap = { version = "4.5.7", features = ["derive"] } rustix = { version = "0.38.34", features = ["event", "fs", "termios"] } signal-hook = "0.3.17" -termsnap-lib = { path = "./termsnap-lib", version = "0.2.0" } +termsnap-lib = { path = "./termsnap-lib", version = "0.2.1" } diff --git a/termsnap-lib/Cargo.toml b/termsnap-lib/Cargo.toml index 2e7acdf..e6c098c 100644 --- a/termsnap-lib/Cargo.toml +++ b/termsnap-lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "termsnap-lib" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "Create SVGs from terminal output" keywords = ["terminal", "screenshot", "ansi", "svg", "vector-graphics"]