Skip to content

Commit fa7c826

Browse files
committed
Re-bump version to v1.2.1
1 parent c2081fa commit fa7c826

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

AUTHORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
- Ville Weijo (@vweijo)
1212
- Ward Poelmans (@wpoely86)
1313

14-
This list was obtained 2018-05-01 by running `git shortlog -sn`
14+
This list was obtained 2018-05-02 by running `git shortlog -sn`

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## [Version 1.2.1] - 2018-05-01
5+
## [Version 1.2.1] - 2018-05-02
66

77
### Fixed
88

doc/programmers/versioning.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ tags as are created with the `GitHub interface
286286
* Delete tag::
287287

288288
>>> git tag -d v1.1.12
289-
>>> git push origin :refs/tags/v1.1a1
289+
>>> git push origin :refs/tags/v1.1.12
290290

291291
* Pull tags::
292292

tools/metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__version__ = '1.2.1'
2-
__version_long = '1.2.1+a7f13ef'
2+
__version_long = '1.2.1+zzzzzzz'
33
__version_upcoming_annotated_v_tag = '1.2.2'
44
__version_most_recent_release = '1.2.0'
55

tools/versioner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def reconcile_and_compute_version_output(quiet=False):
131131
# numerical comparisons such as M.m.p.t and thus can't handle
132132
# prereleases and dev snapshots. We compute a Most Recent Ancestral
133133
# Release tag (e.g., 1.0 or 1.12.1) for a backward release series.
134-
backwardseries = mobj.group('forwardseries')
134+
backwardseries = mobj.group('tag')
135135
if mobj.group('prere'):
136136
backwardseries = meta_most_recent_release
137137
else:

0 commit comments

Comments
 (0)