Skip to content

Commit

Permalink
Release 0.60
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanslenders committed Mar 14, 2016
1 parent 4db4063 commit 17f7a8a
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,31 @@ About the version numbering:
to a <breaking>.<feature>.<fix> style of numbering.


0.60: 2016-03-14
----------------

Fixes:
- Fix in Document.paste. (The screen was not updated after an undo of a paste.)
- Don't use deprecated inspect.getargspec on Python 3.
- Fixed reading input on Windows when input was piped in stdin.
- Use correct file descriptors for input/output in run_system_command.
- Always correctly split prompt in shortcuts.prompt. (Even when multiline=False)
- Correctly align right prompt to the top when the left prompt consists of
multiple lines.
- Correctly use Token.Transparent as default token for a TokenListControl.
- Fix in syntax synchronisation. (Better handle the case when no
synchronisation point was found.)
- Send SIGTSTP to the whole process group.
- Correctly raise on_buffer_changed on all text changes.
- Fix in regular_languages.GrammarLexer. (Fixes bug in ptipython syntax
highlighting.)

New features:
- Add support for additional readers to the Win32 event loop.
- Added on_render event.
- Carry the weight in layout dimensions to allow stretching.


0.59: 2016-02-27
----------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '0.59'
version = '0.60'
# The full version, including alpha/beta/rc tags.
release = '0.59'
release = '0.60'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion prompt_toolkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@


# Don't forget to update in `docs/conf.py`!
__version__ = '0.59'
__version__ = '0.60'

0 comments on commit 17f7a8a

Please sign in to comment.