From 57f9b05d64eab89008ea420764b058e453507334 Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Sat, 16 Mar 2019 16:26:22 -0700 Subject: [PATCH] Bump version to 0.11.1 --- CHANGELOG.md | 21 +++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c6812fe8..4219bf1da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +# Next version (0.11.2) + +_No change yet_ + +## 0.11.1 + +### API updates + +- Added manual scrolling methods to `view::scroll::Core`: + - `keep_in_view`, `scroll_to`, `scroll_to_x`, `scroll_to_y` + Note: the `view::scroll` module is hidden behind an experimental + feature `unstable_scroll`. + +### Improvements + +- Improved printer performance (thanks to @chrisvest). + +### Bugfixes + +- Fixed `MenuPopup` borders near delimiters. + ## 0.11.0 ### Breaking changes diff --git a/Cargo.toml b/Cargo.toml index bfcf37b33..7522c54e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "cursive" readme = "Readme.md" repository = "https://github.com/gyscos/Cursive" -version = "0.11.0" +version = "0.11.1" edition = "2018" [badges.travis-ci]