-
Notifications
You must be signed in to change notification settings - Fork 102
/
RELEASE_NOTES.txt
68 lines (49 loc) · 2.5 KB
/
RELEASE_NOTES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
(See CHANGELOG.txt for lists of changes. This file provides
information for those upgrading from previous versions of stdeb.)
Release 0.5.0
=============
The following backwards incompatible changes were made:
* The --process-dependencies option to py2dsc was dropped, because
this functionality went beyond the scope of the py2dsc script. The
functionality could be added to a new script if desired.
* The ability to pass command options to sdist_dsc by specifying them
to bdist_deb was removed. In other words, if you did this in the
past::
python setup.py bdist_deb --no-backwards-compatibility
You must now do this::
python setup.py sdist_dsc --no-backwards-compatibility bdist_deb
The deprecations were made:
* The stdeb.cfg file location has been moved from the .egg-info
directory into the directory holding setup.py. The old location will
work, but is deprecated and will be removed sometime in the future.
* Some options to the sdist_dsc command have now changed.
(--default-maintiner should now be --maintainer,
--default-distribution should now be --suite), although the old way
will still work, as it is only deprecated for now.
Release 0.4.3
=============
This is a bugfix release. The most significant change is that by
default the "DH_OPTIONS=--buildsystem=python_distutils" environment
variable is passed to debhelper. This causes debhelper to ignore
Makefiles and forces use of "python setup.py install".
No backwards incompatible changes were made with this release.
Release 0.4.2
=============
This is a bugfix release fixing a couple issues. The most significant
fix is that if a package specified "XS-Python-Version" in stdeb.cfg,
the binary package wouldn't install the Python packages.
No backwards incompatible changes were made with this release.
Release 0.4.1
=============
This release maintains backward compatibility with old versions of
stdeb and debhelper, but stdeb now allows packages that don't carry
the cruft of backward compatibility. To disable all backwards
compatibility, specify the --no-backwards-compatibility flag. This
will set --pycentral-backwards-compatibility=False and
--workaround-548392=False. You may set these flags individually if
desired.
By "maintains backward compatibility with stdeb", I mean that newer
packages made with newer stdeb (0.4.1 and up) will properly upgrade
from older package made with older versions of stdeb (less than
0.4.0). The problem, in particular, is the migration from
python-central. See Debian bug #479852 for more information.