diff options
author | W. Trevor King <wking@drexel.edu> | 2009-12-27 15:58:29 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-12-27 15:58:29 -0500 |
commit | 214c4317bb90684dcfdab4d2402daa66fbad2e77 (patch) | |
tree | 8935072ad4ce8ddee2a7056412a7a89c96acf359 /libbe/version.py | |
parent | 89b7a1411e4658e831f5d635534b24355dbb941d (diff) | |
download | bugseverywhere-214c4317bb90684dcfdab4d2402daa66fbad2e77.tar.gz |
Fixed libbe.storage.util.upgrade
Note that it only upgrades on-disk versions, so you can't use a
non-VCS storage backend whose version isn't your command's current
storage version. See #bea/110/bd1# for reasoning. To see the on-disk
storage version, look at
.be/version
To see your command's supported storage version, look at
be --full-version
I added test_upgrade.sh to exercise the upgrade mechanism on BE's own
repository.
Diffstat (limited to 'libbe/version.py')
-rw-r--r-- | libbe/version.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/libbe/version.py b/libbe/version.py index f8eebbd..1214b3e 100644 --- a/libbe/version.py +++ b/libbe/version.py @@ -23,7 +23,10 @@ be bothered setting version strings" and the "I want complete control over the version strings" workflows. """ +import copy + import libbe._version as _version +import libbe.storage.util.upgrade as upgrade # Manually set a version string (optional, defaults to bzr revision id) #_VERSION = "1.2.3" @@ -39,11 +42,14 @@ def version(verbose=False): else: string = _version.version_info["revision_id"] if verbose == True: + info = copy.copy(_version.version_info) + info['storage'] = upgrade.BUGDIR_DISK_VERSION string += ("\n" "revision: %(revno)d\n" "nick: %(branch_nick)s\n" - "revision id: %(revision_id)s" - % _version.version_info) + "revision id: %(revision_id)s\n" + "storage version: %(storage)s" + % info) return string if __name__ == "__main__": |