Skip to content

Commit

Permalink
version 0.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Mar 29, 2020
1 parent 610e9af commit 86703da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ Changelog
|kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator.
To update |kitty|, :doc:`follow the instructions <binary>`.

0.17.2 [future]
0.17.2 [2020-03-29]
--------------------

- Add an :option:`launch --watcher` option that allows defining callbacks
- Add a :option:`launch --watcher` option that allows defining callbacks
that are called for various events in the window's life-cycle (:iss:`2440`)

- Fix a regression in 0.17 that broke drawing of borders with non-minimal
borders (:iss:`2474`)

- hints kitten: Allow copying to primary selection as well as clipboard
- Hints kitten: Allow copying to primary selection as well as clipboard
(:pull:`2487`)

- Add a new mappable action ``close_other_windows_in_tab`` to close all but the
Expand All @@ -22,7 +22,7 @@ To update |kitty|, :doc:`follow the instructions <binary>`.
- Hints kitten: Adjust the default regex used to detect line numbers to handle
line+column numbers (:iss:`2268`)

- Fix blank space at the start of tab bar in powerline style when first tab is
- Fix blank space at the start of tab bar in the powerline style when first tab is
inactive (:iss:`2478`)

- Fix regression causing incorrect rendering of separators in tab bar when
Expand Down
2 changes: 1 addition & 1 deletion kitty/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Version(NamedTuple):


appname: str = 'kitty'
version: Version = Version(0, 17, 1)
version: Version = Version(0, 17, 2)
str_version: str = '.'.join(map(str, version))
_plat = sys.platform.lower()
is_macos: bool = 'darwin' in _plat
Expand Down

0 comments on commit 86703da

Please sign in to comment.