-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
.versioneer-lookup
32 lines (25 loc) · 1.1 KB
/
.versioneer-lookup
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
# Configuration file for the versioneer lookup, manually mapping tags based on branches
#
# Format is
#
# <branch-regex> <tag> <reference commit>
#
# The file is processed from top to bottom, the first matching line wins. If <tag> or <reference commit> are left out,
# the lookup table does not apply to the matched branches
# master, rc and prerelease shall not use the lookup table, only tags
master
pre-release
rc/.*
# neither should disconnected checkouts, e.g. 'git checkout <tag>'
HEAD
\(detached.*
# staging/pre-release is for changes between pre-release RCs etc, currently at 0.7.0rc1
staging/pre-release b06d37becf7a146f877e07c1ed81ae4433ab9b70
# bugfix is currently the branch for (if needed) 0.6.1
bugfix 0.6.1 b06d37becf7a146f877e07c1ed81ae4433ab9b70 pep440-dev
# as are any fix/* branches
fix/.* 0.6.1 b06d37becf7a146f877e07c1ed81ae4433ab9b70 pep440-dev
# devel is currently the branch for work towards 0.7.0
devel 0.7.0 b06d37becf7a146f877e07c1ed81ae4433ab9b70 pep440-dev
# Every other branch is also development, so is resolved to 0.7.0 as well.
.* 0.7.0 b06d37becf7a146f877e07c1ed81ae4433ab9b70 pep440-dev