Release v0.1.1

This commit is contained in:
Michael Davis
2025-09-12 10:05:10 -04:00
parent 0968b8a2e7
commit bb5d2853d2
3 changed files with 13 additions and 2 deletions

View File

@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- ## [Unreleased] -->
## [v0.1.1] - 2025-09-12
### Added
* Expose the `Parser` type ([#12](https://github.com/helix-editor/termina/pull/12))
### Fixed
* Fix overflowing subtraction on large mouse positions without SGRMouse enabled ([#11](https://github.com/helix-editor/termina/pull/11))
* Fix Illumos build by avoiding compiling macOS-specific polling functions ([#13](https://github.com/helix-editor/termina/pull/13))
## [v0.1.0] - 2025-08-31
### Added

2
Cargo.lock generated
View File

@@ -136,7 +136,7 @@ checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
[[package]]
name = "termina"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"bitflags",
"futures-core",

View File

@@ -1,6 +1,6 @@
[package]
name = "termina"
version = "0.1.0"
version = "0.1.1"
authors = ["Michael Davis <mcarsondavis@gmail.com>"]
description = "A cross-platform VT manipulation library"
readme = "README.md"