Merge lp:~vila/brz/prepare-3.0.0 into lp:brz

Proposed by Vincent Ladeuil
Status: Merged
Approved by: Vincent Ladeuil
Approved revision: no longer in the source branch.
Merge reported by: The Breezy Bot
Merged at revision: not available
Proposed branch: lp:~vila/brz/prepare-3.0.0
Merge into: lp:brz
Diff against target: 114 lines (+24/-24)
3 files modified
breezy/__init__.py (+1/-1)
doc/developers/releasing.txt (+2/-2)
doc/en/release-notes/brz-3.0.txt (+21/-21)
To merge this branch: bzr merge lp:~vila/brz/prepare-3.0.0
Reviewer Review Type Date Requested Status
Vincent Ladeuil Approve
Review via email: mp+355003@code.launchpad.net

Commit message

Release 3.0a1

Description of the change

This will be used to cut the alpha tarball.

To post a comment you must log in.
Revision history for this message
Vincent Ladeuil (vila) wrote :

RM approval ;)

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'breezy/__init__.py'
--- breezy/__init__.py 2018-07-20 00:49:12 +0000
+++ breezy/__init__.py 2018-09-16 09:47:08 +0000
@@ -51,7 +51,7 @@
51# Python version 2.0 is (2, 0, 0, 'final', 0)." Additionally we use a51# Python version 2.0 is (2, 0, 0, 'final', 0)." Additionally we use a
52# releaselevel of 'dev' for unreleased under-development code.52# releaselevel of 'dev' for unreleased under-development code.
5353
54version_info = (3, 0, 0, 'dev', 1)54version_info = (3, 0, 0, 'alpha', 1)
5555
56def _format_version_tuple(version_info):56def _format_version_tuple(version_info):
57 """Turn a version number 2, 3 or 5-tuple into a short string.57 """Turn a version number 2, 3 or 5-tuple into a short string.
5858
=== modified file 'doc/developers/releasing.txt'
--- doc/developers/releasing.txt 2018-09-15 13:28:30 +0000
+++ doc/developers/releasing.txt 2018-09-16 09:47:08 +0000
@@ -281,7 +281,7 @@
281281
282#. Commit these changes to the release branch, using a command like::282#. Commit these changes to the release branch, using a command like::
283283
284 brz commit -m "Release 2.3.1"284 brz commit -m "Release 3.0.0"
285285
286 The diff before you commit will be something like::286 The diff before you commit will be something like::
287287
@@ -361,7 +361,7 @@
361361
362 Use a commit message formatted like::362 Use a commit message formatted like::
363 363
364 (vila) Release 3.0.0 (Vincent Ladeuil)364 Release 3.0.0
365365
366 Note that ``brz push`` should mention updating one tag (which you just366 Note that ``brz push`` should mention updating one tag (which you just
367 created). If it doesn't, double-check that you created (and pushed) this367 created). If it doesn't, double-check that you created (and pushed) this
368368
=== modified file 'doc/en/release-notes/brz-3.0.txt'
--- doc/en/release-notes/brz-3.0.txt 2018-06-23 13:39:04 +0000
+++ doc/en/release-notes/brz-3.0.txt 2018-09-16 09:47:08 +0000
@@ -13,16 +13,16 @@
13#########13#########
1414
15:Codename: Pelican15:Codename: Pelican
16:3.0.1: NOT RELEASED YET16:3.0.0: NOT RELEASED YET
1717
18External Compatibility Breaks18External Compatibility Breaks
19*****************************19*****************************
2020
21 * The bzr command has been renamed to brz, to prevent21 * The bzr command has been renamed to brz, to prevent clashes with upstream
22 clashes with upstream Bazaar.22 Bazaar.
23 (Martin Packman, Jelmer Vernooij)23 (Martin Packman, Jelmer Vernooij)
2424
25 * The --prefix/-p argument for ``bzr diff`` now defaults to -p1 rather25 * The --prefix/-p argument for ``brz diff`` now defaults to -p1 rather
26 than -p0. (Jelmer Vernooij, #1695126)26 than -p0. (Jelmer Vernooij, #1695126)
2727
28 * The ``brz register-branch`` command from the Launchpad plugin has been28 * The ``brz register-branch`` command from the Launchpad plugin has been
@@ -70,21 +70,21 @@
70New Features70New Features
71************71************
7272
73 * The 'bisect' plugin is now shipped with bzr. (Jelmer Vernooij)73 * The 'bisect' plugin is now shipped with brz. (Jelmer Vernooij)
7474
75 * The 'fastimport' plugin is now bundled with Bazaar.75 * The 'fastimport' plugin is now bundled with Breezy.
76 (Jelmer Vernooij)76 (Jelmer Vernooij)
7777
78 * The 'stats' plugin is now bundled with Bazaar.78 * The 'stats' plugin is now bundled with Breezy.
79 (Jelmer Vernooij)79 (Jelmer Vernooij)
8080
81 * The 'upload' plugin is now bundled with Bazaar.81 * The 'upload' plugin is now bundled with Breezy.
82 (Jelmer Vernooij)82 (Jelmer Vernooij)
8383
84 * The 'cvs' and 'mtn' plugins are now bundled with Bazaar.84 * The 'cvs' and 'mtn' plugins are now bundled with Breezy.
85 (Jelmer Vernooij)85 (Jelmer Vernooij)
8686
87 * The 'email' plugin is now bundled with Bazaar.87 * The 'email' plugin is now bundled with Breezy.
88 (Jelmer Vernooij)88 (Jelmer Vernooij)
8989
90 * The 'import' command is now bundled with brz.90 * The 'import' command is now bundled with brz.
@@ -123,7 +123,7 @@
123 * The ``repodebug`` plugin is now bundled.123 * The ``repodebug`` plugin is now bundled.
124 (Jelmer Vernooij)124 (Jelmer Vernooij)
125125
126 * New ``bzr cp`` command which copies files (but does not currently track126 * New ``brz cp`` command which copies files (but does not currently track
127 history). (Jelmer Vernooij, start towards #269095)127 history). (Jelmer Vernooij, start towards #269095)
128128
129 * HPSS calls for ``RevisionTree.archive`` and129 * HPSS calls for ``RevisionTree.archive`` and
@@ -149,7 +149,7 @@
149 (Jelmer Vernooij, #796582, #403811, #694946, #268135, #299879)149 (Jelmer Vernooij, #796582, #403811, #694946, #268135, #299879)
150150
151* Print a proper error when encountering ghost revisions in151* Print a proper error when encountering ghost revisions in
152 mainline in ``bzr log``. (Jelmer Vernooij, #726466)152 mainline in ``brz log``. (Jelmer Vernooij, #726466)
153153
154* Security fix: hostnames starting with a dash in bzr+ssh URLs154* Security fix: hostnames starting with a dash in bzr+ssh URLs
155 are now filtered out when using a subprocess SSH client.155 are now filtered out when using a subprocess SSH client.

Subscribers

People subscribed via source and target branches