From 86081352b346fb9c4c9361808bd7ebfa30d87986 Mon Sep 17 00:00:00 2001 From: Kyle McCormick Date: Mon, 4 May 2026 11:57:32 -0400 Subject: [PATCH 1/2] docs: Note that 1.0.x is reserved for Verawood --- src/openedx_core/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/openedx_core/__init__.py b/src/openedx_core/__init__.py index 1e2c806f4..9189cc860 100644 --- a/src/openedx_core/__init__.py +++ b/src/openedx_core/__init__.py @@ -6,4 +6,7 @@ """ # The version for the entire repository +# DEVELOPERS PLEASE NOTE: +# - 1.0.x is reserved for `verawood-backports` +# - Use 1.1.0 as the next `main` release (and then delete this comment). __version__ = "1.0.1" From f0ec423fa149e69e7fafe7b67a72b3d6e110bc94 Mon Sep 17 00:00:00 2001 From: Kyle McCormick Date: Mon, 4 May 2026 13:38:55 -0400 Subject: [PATCH 2/2] docs: note that 2.0.0 could also be next --- src/openedx_core/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/openedx_core/__init__.py b/src/openedx_core/__init__.py index 9189cc860..e568fa056 100644 --- a/src/openedx_core/__init__.py +++ b/src/openedx_core/__init__.py @@ -8,5 +8,6 @@ # The version for the entire repository # DEVELOPERS PLEASE NOTE: # - 1.0.x is reserved for `verawood-backports` -# - Use 1.1.0 as the next `main` release (and then delete this comment). +# - Use 1.1.0 (if non-breaking) or 2.0.0 (if breaking) as the next `main` release, +# and then delete this comment. __version__ = "1.0.1"