summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt8
-rw-r--r--setup.py2
2 files changed, 9 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index bfaa4e0..aeee6fb 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,11 @@
+0.9.3
+=====
+- Integrated digital signatures support without C extensions.
+- Integrated "wheel install" command (single package, no dependency
+ resolution) including compatibility check.
+- Support Python 3.3
+- Use Metadata 1.3 (PEP 426)
+
0.9.2
=====
- Automatic signing if WHEEL_TOOL points to the wheel binary
diff --git a/setup.py b/setup.py
index c9dd75b..fb743de 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ README = codecs.open(os.path.join(here, 'README.txt'), encoding='utf8').read()
CHANGES = codecs.open(os.path.join(here, 'CHANGES.txt'), encoding='utf8').read()
setup(name='wheel',
- version='0.9.2',
+ version='0.9.3',
description='A built-package format for Python.',
long_description=README + '\n\n' + CHANGES,
classifiers=[