8000 Release 1.1.0 and use pbr 0.11 features. · ddriddle/fixtures@18ea57d · GitHub
[go: up one dir, main page]

Skip to content

Commit 18ea57d

Browse files
committed
Release 1.1.0 and use pbr 0.11 features.
1 parent 89856bd commit 18ea57d

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

HACKING

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ the fixtures __init__.py.
3636
Releasing
3737
+++++++++
3838

39-
1. Update the version number in __init__.py and add a version to NEWS.
40-
41-
1. Upload to pypi, signed.
39+
1. Add a version to NEWS.
4240

4341
1. commit, tag.
4442

43+
1. Upload to pypi, signed.
44+
4545
1. Close bugs.
4646

4747
1. Rename the next milestone, release it, and make a new one.

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ fixtures release notes
66
NEXT
77
~~~~
88

9+
1.1.0
10+
~~~~~
11+
912
CHANGES
1013
-------
1114

fixtures/__init__.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,10 @@
3636
# established at this point, and setup.py will use a version of next-$(revno).
3737
# If the releaselevel is 'final', then the tarball will be major.minor.micro.
3838
# Otherwise it is major.minor.micro~$(revno).
39-
40-
# Uncomment when pbr 0.11 is released.
41-
#import pbr.version
42-
#_version = pbr.version.VersionInfo('fixtures').semantic_version()
43-
#__version__ = _version.version_tuple()
44-
#version = _version.release_string()
45-
__version__ = (1, 0, 0, 'final', 0)
39+
from pbr.version import VersionInfo
40+
_version = VersionInfo('fixtures')
41+
__version__ = _version.semantic_version().version_tuple()
42+
version = _version.release_string()
4643

4744

4845
__all__ = [

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
pbr>=0.11
12
testtools>=0.9.22

0 commit comments

Comments
 (0)
0