diff --git a/CHANGELOG.md b/CHANGELOG.md index 41e0bcc..51c46dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [v1.4.0] - 2020-05-01 + +### Added + +- config file support +- documentation for the config file +- commit type icon column +- separate icon set using NerdFont icons for icon column +- support ’..’ (two-dot) Range Notation as REVISION argument +- Tab key switches focus between views +- use vertical split if screen width ≥160 + +### Fixed + +- assert insert-mode when search keybinding is triggered +- diff view render modules joined by a ’,’ +- fetch pr & issues from GitHub for remotes ending with '.git' +- search for a string containing char ’q’ + +### Refactored + +- Move module string construction from `Commit` to `LogEntry` +- container names in the layout + ## [v1.3.0] - 2020-04-19 ### Added @@ -56,7 +80,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - use a statusbar for showing search progress - improvement: add own custom style - ### Changed - rename package to 'git-log-viewer' diff --git a/glv/main.py b/glv/main.py index db207a1..c013df7 100755 --- a/glv/main.py +++ b/glv/main.py @@ -57,7 +57,7 @@ from glv.ui.history import HistoryContainer from glv.utils import repo_from_args, screen_height, screen_width -ARGUMENTS = docopt(__doc__, version='v1.2.0', options_first=True) +ARGUMENTS = docopt(__doc__, version='v1.4.0', options_first=True) DEBUG = ARGUMENTS['--debug'] LOG = logging.getLogger('glv') diff --git a/setup.py b/setup.py index 9f12331..1306795 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="git-log-viewer", - version="1.3.0", + version="1.4.0", python_requires='>=3.6', author="Bahtiar `kalkin` Gadimov", author_email="bahtiar@gadimov.de",