Merge lp:~jelmer/brz/3.2-notes into lp:brz

Proposed by Jelmer Vernooij
Status: Merged
Approved by: Jelmer Vernooij
Approved revision: no longer in the source branch.
Merge reported by: The Breezy Bot
Merged at revision: not available
Proposed branch: lp:~jelmer/brz/3.2-notes
Merge into: lp:brz
Diff against target: 177 lines (+96/-10)
6 files modified
breezy/__init__.py (+1/-1)
brz (+1/-1)
doc/developers/releasing.txt (+5/-7)
doc/en/index.txt (+1/-1)
doc/en/release-notes/brz-3.2.txt (+62/-0)
doc/en/whats-new/whats-new-in-3.2.txt (+26/-0)
To merge this branch: bzr merge lp:~jelmer/brz/3.2-notes
Reviewer Review Type Date Requested Status
Jelmer Vernooij Approve
Review via email: mp+379188@code.launchpad.net

Commit message

Start release notes/whatsnew for Breezy 3.2.

Description of the change

Add whatsnew, etc, for Breezy 3.2.

To post a comment you must log in.
Revision history for this message
Jelmer Vernooij (jelmer) :
review: Approve
Revision history for this message
The Breezy Bot (the-breezy-bot) wrote :
Revision history for this message
The Breezy Bot (the-breezy-bot) wrote :

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'breezy/__init__.py'
2--- breezy/__init__.py 2019-11-19 18:10:28 +0000
3+++ breezy/__init__.py 2020-02-14 00:49:19 +0000
4@@ -53,7 +53,7 @@
5 # Python version 2.0 is (2, 0, 0, 'final', 0)." Additionally we use a
6 # releaselevel of 'dev' for unreleased under-development code.
7
8-version_info = (3, 1, 0, 'dev', 0)
9+version_info = (3, 2, 0, 'dev', 0)
10
11
12 def _format_version_tuple(version_info):
13
14=== modified file 'brz'
15--- brz 2020-01-31 17:43:44 +0000
16+++ brz 2020-02-14 00:49:19 +0000
17@@ -25,7 +25,7 @@
18 import warnings
19
20 # update this on each release
21-_script_version = (3, 1, 0)
22+_script_version = (3, 2, 0)
23
24 NEED_VERS = (2, 7)
25
26
27=== modified file 'doc/developers/releasing.txt'
28--- doc/developers/releasing.txt 2019-06-18 10:52:09 +0000
29+++ doc/developers/releasing.txt 2020-02-14 00:49:19 +0000
30@@ -53,8 +53,8 @@
31 Differences in the release process between beta and stable release will be
32 mentioned when needed.
33
34-When do we relase ?
35-===================
36+When do we release ?
37+====================
38
39 As of September 2018, we maintain a single series: 3.0.
40
41@@ -105,14 +105,12 @@
42 #. Start a new release-notes file::
43
44 cd doc/en/release-notes
45- cp series-template.txt brz-x.y.txt # e.g. brz-3.1.txt
46- brz add brz-3.1.txt
47+ brz cp series-template.txt brz-x.y.txt # e.g. brz-3.1.txt
48
49 #. Start a new whats-new file::
50
51 cd doc/en/whats-new
52- cp template.txt brz-x.y.txt # e.g. brz-3.1.txt
53- brz add brz-x.y.txt
54+ brz cp template.txt brz-x.y.txt # e.g. brz-3.1.txt
55
56 #. Update ``doc/en/index.txt`` to point to the new whats-new file.
57
58@@ -129,7 +127,7 @@
59
60 #. Make a local branch to prepare the release::
61
62- brz branch lp:brz/x.y x.y-dev
63+ brz branch lp:brz/x.y x.y-dev
64
65 If you're doing your first beta release, branch from trunk::
66
67
68=== modified file 'doc/en/index.txt'
69--- doc/en/index.txt 2019-03-06 14:23:50 +0000
70+++ doc/en/index.txt 2020-02-14 00:49:19 +0000
71@@ -10,7 +10,7 @@
72 .. toctree::
73 :maxdepth: 1
74
75- whats-new/whats-new-in-3.1
76+ whats-new/whats-new-in-3.2
77 user-guide/index
78 tutorials/index
79 quick-reference/index
80
81=== added file 'doc/en/release-notes/brz-3.2.txt'
82--- doc/en/release-notes/brz-3.2.txt 1970-01-01 00:00:00 +0000
83+++ doc/en/release-notes/brz-3.2.txt 2020-02-14 00:49:19 +0000
84@@ -0,0 +1,62 @@
85+####################
86+Breezy Release Notes
87+####################
88+
89+.. toctree::
90+ :maxdepth: 1
91+
92+brz 3.2.0
93+#########
94+
95+:Codename: Nirvana
96+:3.2.0: NOT RELEASED YET
97+
98+External Compatibility Breaks
99+*****************************
100+
101+.. These may require users to change the way they use Breezy.
102+
103+New Features
104+************
105+
106+.. New commands, options, etc that users may wish to try out.
107+
108+Improvements
109+************
110+
111+.. Improvements to existing commands, especially improved performance
112+ or memory usage, or better results.
113+
114+Bug Fixes
115+*********
116+
117+.. Fixes for situations where brz would previously crash or give incorrect
118+ or undesirable results.
119+
120+Documentation
121+*************
122+
123+.. Improved or updated documentation.
124+
125+API Changes
126+***********
127+
128+.. Changes that may require updates in plugins or other code that uses
129+ breezy.
130+
131+Internals
132+*********
133+
134+.. Major internal changes, unlikely to be visible to users or plugin
135+ developers, but interesting for brz developers.
136+
137+Testing
138+*******
139+
140+.. Fixes and changes that are only relevant to brz's test framework and
141+ suite. This can include new facilities for writing tests, fixes to
142+ spurious test failures and changes to the way things should be tested.
143+
144+
145+..
146+ vim: tw=74 ft=rst ff=unix
147
148=== added file 'doc/en/whats-new/whats-new-in-3.2.txt'
149--- doc/en/whats-new/whats-new-in-3.2.txt 1970-01-01 00:00:00 +0000
150+++ doc/en/whats-new/whats-new-in-3.2.txt 2020-02-14 00:49:19 +0000
151@@ -0,0 +1,26 @@
152+*************************
153+What's New in Breezy x.y?
154+*************************
155+
156+Breezy x.y is still under development, and will be released in Month Year.
157+This document accumulates a high level summary of what's changed. See the
158+:doc:`../release-notes/index` for a full list.
159+
160+<topics of interest here>
161+
162+Further information
163+*******************
164+
165+For more detailed information on the changes made, see the the
166+:doc:`../release-notes/index` for:
167+
168+* the interim brz `milestones <https://launchpad.net/bzr/x.y>`_
169+* the plugins you use.
170+
171+For a summary of changes made in earlier releases, see:
172+
173+* :doc:`whats-new-in-2.1`
174+* :doc:`whats-new-in-2.2`
175+* :doc:`whats-new-in-2.3`
176+<intermediate series here>
177+* :doc:`whats-new-in-x.(y-1)`

Subscribers

People subscribed via source and target branches