Skip to content

Commit

Permalink
bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
astraw committed Feb 18, 2015
1 parent f7b1a5f commit cbb5ed4
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
11 changes: 10 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,15 @@ interpreter (and only the Python3 package installs scripts)::
News
----

* 2015-02-18: **Version 0.8.5**. See the `download page
<https://pypi.python.org/pypi/stdeb/0.8.5>`__. Bugfixes: reverted
change that installed into virtualenv when built in
virtualenv. Improvements: Added
`--allow-virtualenv-install-location` to allow installing into
virtualenv location. Supports Debian Squeeze (6), Debian Wheezy
(7), Ubuntu Precise (12.04), Ubuntu Trusty (14.04) and later
releases.

* 2015-02-16: **Version 0.8.4**. See the `download page
<https://pypi.python.org/pypi/stdeb/0.8.4>`__. Bugfixes: works on
Python 3.4 (e.g. Ubuntu Trusty) again. Improvements: Improved
Expand Down Expand Up @@ -431,7 +440,7 @@ to install a more recent stdeb.

::

STDEB_VERSION="0.8.4"
STDEB_VERSION="0.8.5"

# Download stdeb
wget http://pypi.python.org/packages/source/s/stdeb/stdeb-$STDEB_VERSION.tar.gz
Expand Down
9 changes: 8 additions & 1 deletion RELEASE_NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
Release 0.8.5
=============

Building package in a virtual environment does not install in a
virtual environment (restores 0.8.3 behavior).

Release 0.8.4
=============

No backwards-incompatible changes from 0.8.3.
Building package in a virtual environment installs in a virtual
environment.

Release 0.8.3
=============
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
setup(name='stdeb',
# Keep version in sync with stdeb/__init__.py and install section
# of README.rst.
version='0.8.4',
version='0.8.5',
author='Andrew Straw',
author_email='[email protected]',
description='Python to Debian source package conversion utility',
Expand Down
2 changes: 1 addition & 1 deletion stdeb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import logging
__version__ = '0.8.4' # keep in sync with ../setup.py
__version__ = '0.8.5' # keep in sync with ../setup.py

log = logging.getLogger('stdeb')
log.setLevel(logging.INFO)
Expand Down

0 comments on commit cbb5ed4

Please sign in to comment.