Skip to content

Commit

Permalink
Update release infos and bump version to 2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinDuquesnoy committed Nov 30, 2014
1 parent d0a0d15 commit da8eeb5
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 13 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
Changelog
=========

2.4.0
-----

New features:

- add outline tree view
- improvements to the syntax highlighter: make use of the new formats types
- add more examples

Fixed bugs:

- fix default encoding on windows
- fix lost of selection after unindent
- fix file path regex for exception traceback highlighting in the python
interactive console
- fix some bugs with pyside
- fix some bugs with python 2
- fix some bugs with auto indent mode
- fix some bugs with auto completes of triple quotes (both single and double
quotes)


2.3.0
-----

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Installation

::

$ pip install pyqode.python
$ pip install pyqode.python --upgrade


Testing
Expand Down
2 changes: 1 addition & 1 deletion pyqode/python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
completion, documentation lookups, code linters, and so on...).
"""
__version__ = '2.4.dev'
__version__ = '2.4.0'

14 changes: 3 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
This setup script packages pyqode.python
"""
from setuptools import setup, find_packages

from pyqode.python import __version__

#
# add ``build_ui command`` (optional, for development only)
Expand All @@ -19,15 +19,6 @@
cmdclass = {}


def read_version():
with open("pyqode/python/__init__.py") as f:
lines = f.read().splitlines()
for l in lines:
if "__version__" in l:
return l.split("=")[1].strip().replace('"', '').replace(
"'", '')


def readme():
return str(open('README.rst').read())

Expand All @@ -45,7 +36,7 @@ def readme():
setup(
name='pyqode.python',
namespace_packages=['pyqode'],
version=read_version(),
version=__version__,
packages=[p for p in find_packages() if 'test' not in p],
keywords=["CodeEdit PySide PyQt code editor widget python"],
package_dir={'pyqode': 'pyqode'},
Expand All @@ -72,6 +63,7 @@ def readme():
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Widget Sets',
'Topic :: Text Editors :: Integrated Development Environments (IDE)'
Expand Down

0 comments on commit da8eeb5

Please sign in to comment.