~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Alexander Belchenko
  • Date: 2008-02-16 10:03:17 UTC
  • mfrom: (3224 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3230.
  • Revision ID: bialix@ukr.net-20080216100317-xg1hdw306evlgt94
merge bzr.dev; update for 1.3; $BZR_LOG used in trace.py module (again), not in the main bzr script (req. by Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2008 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
41
41
# Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
42
42
# releaselevel of 'dev' for unreleased under-development code.
43
43
 
44
 
version_info = (1, 2, 0, 'dev', 0)
 
44
version_info = (1, 3, 0, 'dev', 0)
45
45
 
46
46
# API compatibility version: bzrlib is currently API compatible with 0.18.
47
47
api_minimum_version = (0, 18, 0)