From 6dd92c3f6b2c3e2dc28d966607560b260a491e27 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Mon, 7 Jun 2021 20:44:47 +0200 Subject: [PATCH] Wrap lines in the source to <80 columns Signed-off-by: Gilles Peskine --- BRANCHES.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/BRANCHES.md b/BRANCHES.md index a758d08b3..df30ae100 100644 --- a/BRANCHES.md +++ b/BRANCHES.md @@ -28,14 +28,20 @@ undocumented features, then you should be able to re-compile it without modification with any later release x.y'.z' with the same major version number, and your code will still build, be secure, and work. -Note that new releases of Mbed TLS may extend the API. Here are some examples of changes that are common in minor releases of Mbed TLS, and are not considered API compatibility breaks: +Note that new releases of Mbed TLS may extend the API. Here are some +examples of changes that are common in minor releases of Mbed TLS, and are +not considered API compatibility breaks: * Adding or reordering fields in a structure or union. * Removing a field from a structure, unless the field is documented as public. * Adding items to an enum. -* Returning an error code that was not previously documented for a function when a new error condition arises. -* Changing which error code is returned in a case where multiple error conditions apply. -* Changing the behavior of a function from failing to succeeding, when the change is a reasonable extension of the current behavior, i.e. the addition of a new feature. +* Returning an error code that was not previously documented for a function + when a new error condition arises. +* Changing which error code is returned in a case where multiple error + conditions apply. +* Changing the behavior of a function from failing to succeeding, when the + change is a reasonable extension of the current behavior, i.e. the + addition of a new feature. There are rare exceptions where we break API compatibility: code that was relying on something that became insecure in the meantime (for example,