Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ documentation = "https://www.breezy-vcs.org/doc/"
members = ["lib-rio"]

[workspace.package]
version = "3.3.13"
version = "3.3.14"

[[bin]]
name = "brz"
Expand Down
2 changes: 1 addition & 1 deletion breezy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
# Python version 2.0 is (2, 0, 0, 'final', 0)." Additionally we use a
# releaselevel of 'dev' for unreleased under-development code.

version_info = (3, 3, 13, "dev", 0)
version_info = (3, 3, 14, "dev", 0)


def _format_version_tuple(version_info):
Expand Down
25 changes: 24 additions & 1 deletion doc/en/release-notes/brz-3.3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@ Breezy Release Notes
.. toctree::
:maxdepth: 1

brz 3.3.14
##########

:3.3.14: UNRELEASED

brz 3.3.13
##########

:3.3.13: UNRELEASED
:3.3.13: 2025-08-31

* Add warning when accessing Bazaar branches on Launchpad, as Launchpad
is phasing out Bazaar code hosting. The warning can be suppressed by
Expand All @@ -18,6 +23,24 @@ brz 3.3.13
* Fix compatibility with paramiko 4.0.0, which removed DSA key support.
(Jelmer Vernooij)

* Add Python 3.14 support. (Jelmer Vernooij)

* Cope with removed ``ast.Str`` in Python 3.14. (Jelmer Vernooij)

* Use released dulwich rather than development version. (Jelmer Vernooij)

* Fix git object store compatibility issues with dulwich. (Jelmer Vernooij)

* git: Ensure tags are pushed for local operations. (Jelmer Vernooij)

* Fix typing issues with newer versions of typing-extensions. (Jelmer Vernooij)

* Drop support for Bazaar on Launchpad. (Jelmer Vernooij)

* Remove references to Bazaar codehosting on Launchpad. (Jelmer Vernooij)

* Improve installation instructions for modern Python. (Jelmer Vernooij, #2119976)

brz 3.3.12
##########

Expand Down
Loading