Skip to content

Commit

Permalink
Update changelog and bump version to 2.8.0 (final)
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinDuquesnoy committed Jan 25, 2016
1 parent ce5857a commit 991e2c1
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
34 changes: 34 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,40 @@
Change Log
==========

2.8.0
-----

New features:

- new pyqode package: pyqode.rst (ReStructuredText)
- enable case sensitive code completion by default
- add a new widget: HtmlPreviewWidget. This widget display the preview of an
editor that implement the ``to_html`` method. (use for the new pyqode
package: pyqode.rst)
- enable code completion in strings (it's up to the cc engine to treat them
differently)
- SplittableCodeEditTabWidget: add a way to repen recently closed tabs
- CI improvements: tests are now running with both PyQt4 and PyQt5 on Travis CI

Fixed bugs:

- fix PYGMENTS_STYLES not including our own styles if pyqode not in standard path (OCIDE now bundles pyqode)
- fix wrong modifiers used for indent/unindent: Ctrl+Tab and Ctrl+Shift+Tab can
now be used to cycle through the tabs of a QTabWidget
- fix AttributeError in FSTreeView: msg box does not have an error method,
use critical instead
- fix unable to create directories/files that starts with '.' in FSTreeView (hidden on linux)
- fix AttributeError in splittable tab widget if editor widget is not a CodeEdit
- fix AttributeError: 'NoneType' object has no attribute 'state' in InteractiveConsole
- fix some segmentation faults when using PyQt4
- fix highlighting not working in split editor if original editor has been
closed.
- fix a memory leak in the backend manager
- fix unreadable search occurences if foreground color is white (dark themes)
- fix wrong tag color in QtStyle pygments style
- fix AttributeError: 'NoneType' object has no attribute '_port' in BackendManager


2.7.0
-----

Expand Down
2 changes: 1 addition & 1 deletion pyqode/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import logging


__version__ = '2.8.0.dev0'
__version__ = '2.8.0'


logging.addLevelName(1, "PYQODEDEBUGCOMM")
Expand Down

0 comments on commit 991e2c1

Please sign in to comment.