From d5ee7bd61d6e6e9cf505956d28ccb3101d3ca464 Mon Sep 17 00:00:00 2001 From: Richard Lewis Date: Sun, 16 Jun 2019 23:52:01 +0300 Subject: [PATCH] Release 0.2.0 --- CHANGELOG.md | 17 ++++++++++++++++- suplemon/main.py | 2 +- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2b47b7..0293860 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,22 @@ Change Log ========== - ## [v0.1.65](https://github.com/richrd/suplemon/tree/v0.1.65) (2019-03-11) compared to previous master branch. +## [v0.2.0](https://github.com/richrd/suplemon/tree/v0.2.0) (2019-06-16) compared to previous master branch. +[Full Changelog](https://github.com/richrd/suplemon/compare/v0.1.65...v0.2.0) + +**Fixed bugs:** + +- Fix not using the delta argument in the cursor move_up method. +- Fix issue where mouse events in prompts could crash suplemon #247 +- Fix not being able to override default keys with user key bindings + +**Implemented enhancements:** + +- Allow help to be toggled with the help shortcut. Credit @caph1993 +- Allow opening files at specific row and column from command line. + + +## [v0.1.65](https://github.com/richrd/suplemon/tree/v0.1.65) (2019-03-11) compared to previous master branch. [Full Changelog](https://github.com/richrd/suplemon/compare/v0.1.64...v0.1.65) **Fixed bugs:** diff --git a/suplemon/main.py b/suplemon/main.py index 10d91f2..097d224 100644 --- a/suplemon/main.py +++ b/suplemon/main.py @@ -18,7 +18,7 @@ from .config import Config from .editor import Editor -__version__ = "0.1.65" +__version__ = "0.2.0" class App: