Skip to content

Commit

Permalink
0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kilink committed Apr 6, 2014
1 parent 520d8ec commit d817e87
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ Generate Github-style HTML for unified diffs.
Changes
-------

0.3 (2014-04-06)
~~~~~~~~~~~~~~~~

* Fix Python 3 issue when running as a command-line script.

0.2
~~~

Expand Down
21 changes: 19 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

setup(
name="ghdiff",
version="0.2",
version="0.3",
description="Generate Github-style HTML for unified diffs.",
long_description=open("README.rst").read(),
author="Patrick Strawderman",
author_email="[email protected]",
url="http://github/kilink/ghdiff",
url="https://github.com/kilink/ghdiff",
license="MIT",
package_data={"": ["*.py", "*.txt", "*.css"]},
include_package_data=True,
Expand All @@ -19,4 +21,19 @@
"ghdiff = ghdiff:main"
]
},
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development',
'Topic :: Utilities',
],
)
2 changes: 1 addition & 1 deletion src/ghdiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys
import xml.sax.saxutils

__version__ = "0.2"
__version__ = "0.3"

default_css = """\
<style type="text/css">
Expand Down

0 comments on commit d817e87

Please sign in to comment.