Skip to content

Commit b3ed15e

Browse files
author
Jyrki Pulliainen
committed
Release 0.10-1
1 parent 2d5baeb commit b3ed15e

File tree

4 files changed

+26
-8
lines changed

4 files changed

+26
-8
lines changed

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
dh-virtualenv (0.10-1) unstable; urgency=low
2+
3+
* New upstream release
4+
5+
-- Jyrki Pulliainen <[email protected]> Thu, 20 Aug 2015 13:00:55 +0200
6+
17
dh-virtualenv (0.9-1) experimental; urgency=low
28

39
* New upstream release

dh_virtualenv/cmdline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def parse_args(self, args=None, values=None):
4141

4242
def get_default_parser():
4343
usage = '%prog [options]'
44-
parser = DebhelperOptionParser(usage, version='%prog 0.9')
44+
parser = DebhelperOptionParser(usage, version='%prog 0.10')
4545
parser.add_option('-p', '--package', action='append',
4646
help='act on the package named PACKAGE')
4747
parser.add_option('-N', '--no-package', action='append',

doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '0.9'
51+
version = '0.10'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.9'
53+
release = '0.10'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

doc/info.rst

+17-5
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,27 @@ In the sequence the ``dh_virtualenv`` is inserted right after
2424
Following list contains most notable changes by version. For full list
2525
consult the git history of the project.
2626

27-
0.10 (unreleased)
28-
=================
29-
30-
* Honor ``DH_VIRTUALENV_INSTALL_ROOT`` in build system. Thanks to
27+
0.10
28+
====
29+
30+
* **Backwards incompatible** Fix installation using the built-in
31+
virtual environment on 3.4. This might break installation on Python
32+
versions prior to 3.4 when using `--builtin-venv` flag. Thanks to
33+
`Elonen <https://github.com/elonen>`_ for fixing!
34+
* Honor ``DH_VIRTUALENV_INSTALL_ROOT`` in build system. Thanks to
3135
`Ludwig Hähne <https://github.com/Pankrat>`_ for implementing!
3236
* Allow overriding virtualenv arguments by using the
33-
``DH_VIRTUALENV_ARGUMENTS`` environment variable when using the
37+
``DH_VIRTUALENV_ARGUMENTS`` environment variable when using the
3438
build system. Thanks to `Ludwig Hähne <https://github.com/Pankrat>`_
3539
for implementing!
40+
* Add option to skip installation of the actual project. In other
41+
words using ``--skip-install`` installs only the dependencies of the
42+
project found in requirements.txt. Thanks to `Phillip
43+
O'Donnell <https://github.com/phillipod>`_ for implementing!
44+
* Support custom installation suffix instead of the package name via
45+
``--install-suffix``. Thanks to `Phillip
46+
O'Donnell <https://github.com/phillipod>`_ for implementing!
47+
3648

3749
0.9
3850
===

0 commit comments

Comments
 (0)