Skip to content

Commit da8eeb5

Browse files
Update release infos and bump version to 2.4
1 parent d0a0d15 commit da8eeb5

File tree

4 files changed

+30
-13
lines changed

4 files changed

+30
-13
lines changed

CHANGELOG.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
Changelog
2+
=========
3+
4+
2.4.0
5+
-----
6+
7+
New features:
8+
9+
- add outline tree view
10+
- improvements to the syntax highlighter: make use of the new formats types
11+
- add more examples
12+
13+
Fixed bugs:
14+
15+
- fix default encoding on windows
16+
- fix lost of selection after unindent
17+
- fix file path regex for exception traceback highlighting in the python
18+
interactive console
19+
- fix some bugs with pyside
20+
- fix some bugs with python 2
21+
- fix some bugs with auto indent mode
22+
- fix some bugs with auto completes of triple quotes (both single and double
23+
quotes)
24+
25+
126
2.3.0
227
-----
328

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Installation
6969

7070
::
7171

72-
$ pip install pyqode.python
72+
$ pip install pyqode.python --upgrade
7373

7474

7575
Testing

pyqode/python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
completion, documentation lookups, code linters, and so on...).
77
88
"""
9-
__version__ = '2.4.dev'
9+
__version__ = '2.4.0'
1010

setup.py

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This setup script packages pyqode.python
55
"""
66
from setuptools import setup, find_packages
7-
7+
from pyqode.python import __version__
88

99
#
1010
# add ``build_ui command`` (optional, for development only)
@@ -19,15 +19,6 @@
1919
cmdclass = {}
2020

2121

22-
def read_version():
23-
with open("pyqode/python/__init__.py") as f:
24-
lines = f.read().splitlines()
25-
for l in lines:
26-
if "__version__" in l:
27-
return l.split("=")[1].strip().replace('"', '').replace(
28-
"'", '')
29-
30-
3122
def readme():
3223
return str(open('README.rst').read())
3324

@@ -45,7 +36,7 @@ def readme():
4536
setup(
4637
name='pyqode.python',
4738
namespace_packages=['pyqode'],
48-
version=read_version(),
39+
version=__version__,
4940
packages=[p for p in find_packages() if 'test' not in p],
5041
keywords=["CodeEdit PySide PyQt code editor widget python"],
5142
package_dir={'pyqode': 'pyqode'},
@@ -72,6 +63,7 @@ def readme():
7263
'Programming Language :: Python :: 2.7',
7364
'Programming Language :: Python :: 3.2',
7465
'Programming Language :: Python :: 3.3',
66+
'Programming Language :: Python :: 3.4',
7567
'Topic :: Software Development :: Libraries :: Application Frameworks',
7668
'Topic :: Software Development :: Widget Sets',
7769
'Topic :: Text Editors :: Integrated Development Environments (IDE)'

0 commit comments

Comments
 (0)