From 75d0c01e40ef7a9027bee1ec8d475851e1a22e40 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jul 2024 18:19:36 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- termsnap-lib/Cargo.toml | 2 +- 4 files changed, 35 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d767b22..c54575f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # Changelog +## [0.2.2] - 2024-07-16 + +### Features +- allow rendering terminal screens just prior to clearing +([59c3bef](https://github.com/tomcur/termsnap/commit/59c3bef01c743ce53d2f3c1e8ef1fa7417af4f68)) +- *(lib)* allow inspecting Term just prior to applying some ANSI signals +([7012f8d](https://github.com/tomcur/termsnap/commit/7012f8d83b46d0db58896219e4f2551ae2ebb8ad)) +- allow specifying child's TERM environment variable +([22da2c1](https://github.com/tomcur/termsnap/commit/22da2c1029edd20d48c4edb55f25bc07fc1832b2)) + + +### Documentation +- use xterm-256color in example for better compatibility across systems +([d685f20](https://github.com/tomcur/termsnap/commit/d685f2005f66e19919bbfad25a6a778b508eec20)) +- use full lines/columns argument name in examples +([b30e27b](https://github.com/tomcur/termsnap/commit/b30e27b62fcc3bb5ed9c4c0b2d232cd24cee4ff6)) + + +### Refactor +- make name of generic parameter consistent +([9579b54](https://github.com/tomcur/termsnap/commit/9579b543b9ec5fbadd1816b85ae80bec6c5d3e2e)) +- address clippy warnings +([f91cc82](https://github.com/tomcur/termsnap/commit/f91cc827e0bdbf2d52ef658549e41e68e76c2d95)) + + +### Other +- generate examples +([2aea9ea](https://github.com/tomcur/termsnap/commit/2aea9ea55a2434237f83fc2221f8b896cde4c7e6)) + + ## [0.2.1] - 2024-07-01 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 3aa2f6b..0c1eb1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -488,7 +488,7 @@ dependencies = [ [[package]] name = "termsnap" -version = "0.2.1" +version = "0.2.2" dependencies = [ "alacritty_terminal", "anyhow", @@ -501,7 +501,7 @@ dependencies = [ [[package]] name = "termsnap-lib" -version = "0.2.1" +version = "0.2.2" dependencies = [ "alacritty_terminal", ] diff --git a/Cargo.toml b/Cargo.toml index 0bc53d9..6228ced 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "termsnap" -version = "0.2.1" +version = "0.2.2" 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.1" } +termsnap-lib = { path = "./termsnap-lib", version = "0.2.2" } diff --git a/termsnap-lib/Cargo.toml b/termsnap-lib/Cargo.toml index e6c098c..9b154f4 100644 --- a/termsnap-lib/Cargo.toml +++ b/termsnap-lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "termsnap-lib" -version = "0.2.1" +version = "0.2.2" edition = "2021" description = "Create SVGs from terminal output" keywords = ["terminal", "screenshot", "ansi", "svg", "vector-graphics"]