* [PATCH] Fix typo in MaintNotes regarding versioning scheme
@ 2026-02-22 15:39 Silas via GitGitGadget
2026-03-06 15:14 ` Silas Poulson
0 siblings, 1 reply; 5+ messages in thread
From: Silas via GitGitGadget @ 2026-02-22 15:39 UTC (permalink / raw)
To: git; +Cc: Silas, Silas
From: Silas <silas@dyalog.com>
Corrected a typo in the versioning scheme description.
Signed-off-by: bear8642 <silas@dyalog.com>
---
Fix typo in MaintNotes regarding versioning scheme
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-2209%2Fbear8642%2Fpatch-1-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-2209/bear8642/patch-1-v1
Pull-Request: https://github.com/git/git/pull/2209
MaintNotes | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/MaintNotes b/MaintNotes
index 12ba677c36..399d74807e 100644
--- a/MaintNotes
+++ b/MaintNotes
@@ -183,7 +183,7 @@ ready to be used in a production setting. Every now and then, a
"feature release" is cut from the tip of this branch. They used to be
named with three dotted decimal digits (e.g., "1.8.5"), but we have
switched the versioning scheme and "feature releases" are named with
-ttwo-dotted decimal digits (e.g. "2.53"), whose tag ends with ".0"
+two-dotted decimal digits (e.g. "2.53"), whose tag ends with ".0"
(e.g., "v2.53.0").
The last such release was Git 2.53, made on Feb 2nd, 2026. We aim to
base-commit: 0ceb40560a5cca1c98c1d1b37a1f3254fbdd2efd
--
gitgitgadget
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] Fix typo in MaintNotes regarding versioning scheme
2026-02-22 15:39 [PATCH] Fix typo in MaintNotes regarding versioning scheme Silas via GitGitGadget
@ 2026-03-06 15:14 ` Silas Poulson
2026-03-06 21:07 ` Junio C Hamano
0 siblings, 1 reply; 5+ messages in thread
From: Silas Poulson @ 2026-03-06 15:14 UTC (permalink / raw)
To: gitgitgadget; +Cc: git
Bump
I'm aware this is a very minor change, but it would be good to not let
this fall through the cracks.
Thanks,
Silas
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Fix typo in MaintNotes regarding versioning scheme
2026-03-06 15:14 ` Silas Poulson
@ 2026-03-06 21:07 ` Junio C Hamano
2026-06-18 11:48 ` Tuomas Ahola
0 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2026-03-06 21:07 UTC (permalink / raw)
To: Silas Poulson; +Cc: gitgitgadget, git
Silas Poulson <silas@dyalog.com> writes:
> I'm aware this is a very minor change, but it would be good to not let
> this fall through the cracks.
Thanks for noticing a typo.
Will update before the next issue is sent to the mailing list. No
point in changing it before that.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Fix typo in MaintNotes regarding versioning scheme
2026-03-06 21:07 ` Junio C Hamano
@ 2026-06-18 11:48 ` Tuomas Ahola
2026-06-18 15:08 ` Junio C Hamano
0 siblings, 1 reply; 5+ messages in thread
From: Tuomas Ahola @ 2026-06-18 11:48 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Silas Poulson, gitgitgadget, git
Junio C Hamano <gitster@pobox.com> wrote:
> Silas Poulson <silas@dyalog.com> writes:
>
> > I'm aware this is a very minor change, but it would be good to not let
> > this fall through the cracks.
>
> Thanks for noticing a typo.
>
> Will update before the next issue is sent to the mailing list. No
> point in changing it before that.
On that occasion, please consider also these fixes:
-----8<-----
Subject: [PATCH] MaintNotes: fix typos and grammar
Signed-off-by: Tuomas Ahola <taahol@utu.fi>
---
MaintNotes | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/MaintNotes b/MaintNotes
index 12ba677c36..44b29c9e10 100644
--- a/MaintNotes
+++ b/MaintNotes
@@ -82,7 +82,7 @@ available at:
There is a volunteer-run newsletter to serve our community ("Git Rev
News" https://git.github.io/rev_news/).
-Git is a member project of software freedom conservancy, a non-profit
+Git is a member project of Software Freedom Conservancy, a non-profit
organization (https://sfconservancy.org/). To reach a committee of
liaisons to the conservancy, contact them at <git@sfconservancy.org>.
@@ -245,7 +245,7 @@ by others may cause conflicts with their own work, and find people who
are working on these topics to talk to before the potential conflicts
get out of control. It would be a good idea to fork your work from
maint or master and to (1) test it by itself, (2) test a temporary
-merge of it to "next" and (3) test a temporary merge to it to "seen",
+merge of it to "next" and (3) test a temporary merge of it to "seen",
before sending it to the list (or asking GitGitGadget to send it to
the list).
@@ -262,10 +262,10 @@ using the topics that didn't make the cut in the feature release.
Some topics that used to be in "next" during the previous cycle may
get ejected from "next" when this happens.
-A natural consequence of how "next" and "seen" bundles topics together
-is that until a topic is merged to "next", updates to it is expected
+A natural consequence of how "next" and "seen" bundle topics together
+is that until a topic is merged to "next", updates to it are expected
by replacing the patch(es) in the topic with an improved version, and
-once a topic is merged to "next", updates to it needs to come as
+once a topic is merged to "next", updates to it need to come as
incremental patches, pointing out what was wrong in the previous
patches and how the problem was corrected. The idea is that if many
reviewers thought it has seen enough eyeballs and is good enough for
base-commit: f9b08c9b285c9154e41b9f5fce7506018b83dfcb
--
2.30.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] Fix typo in MaintNotes regarding versioning scheme
2026-06-18 11:48 ` Tuomas Ahola
@ 2026-06-18 15:08 ` Junio C Hamano
0 siblings, 0 replies; 5+ messages in thread
From: Junio C Hamano @ 2026-06-18 15:08 UTC (permalink / raw)
To: Tuomas Ahola; +Cc: Silas Poulson, gitgitgadget, git
Tuomas Ahola <taahol@utu.fi> writes:
> Junio C Hamano <gitster@pobox.com> wrote:
>
>> Silas Poulson <silas@dyalog.com> writes:
>>
>> > I'm aware this is a very minor change, but it would be good to not let
>> > this fall through the cracks.
>>
>> Thanks for noticing a typo.
>>
>> Will update before the next issue is sent to the mailing list. No
>> point in changing it before that.
>
> On that occasion, please consider also these fixes:
Thanks. Will squash in. The next issue of Maintotes will come
right after 2.55 final gets tagged, so we have a bit more time.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-06-18 15:08 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-22 15:39 [PATCH] Fix typo in MaintNotes regarding versioning scheme Silas via GitGitGadget
2026-03-06 15:14 ` Silas Poulson
2026-03-06 21:07 ` Junio C Hamano
2026-06-18 11:48 ` Tuomas Ahola
2026-06-18 15:08 ` Junio C Hamano
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.