Browse Source

Begin post-3.23 development

Brad King 3 years ago
parent
commit
345908b16b
4 changed files with 18 additions and 9 deletions
  1. 7 7
      .gitlab-ci.yml
  2. 7 0
      Help/release/dev/0-sample-topic.rst
  3. 2 0
      Help/release/index.rst
  4. 2 2
      Source/CMakeVersion.cmake

+ 7 - 7
.gitlab-ci.yml

@@ -59,7 +59,7 @@ p:doc-package:
         - .cmake_doc_artifacts
         - .run_only_for_package
 
-.u:source-package:
+u:source-package:
     extends:
         - .rsync_upload_binary
         - .run_only_for_package
@@ -77,7 +77,7 @@ b:help:master:
         - .cmake_org_help
         - .run_only_for_continuous_master
 
-.u:help:master:
+u:help:master:
     extends:
         - .rsync_upload_help
         - .run_only_for_continuous_master
@@ -93,7 +93,7 @@ b:help:stage:
         - .cmake_org_help
         - .run_only_for_continuous_stage
 
-.u:help:stage:
+u:help:stage:
     extends:
         - .rsync_upload_help
         - .run_only_for_continuous_stage
@@ -529,7 +529,7 @@ b:linux-x86_64-package:
     needs:
         - p:doc-package
 
-.u:linux-x86_64-package:
+u:linux-x86_64-package:
     extends:
         - .rsync_upload_binary
         - .run_only_for_package
@@ -553,7 +553,7 @@ b:linux-aarch64-package:
     needs:
         - p:doc-package
 
-.u:linux-aarch64-package:
+u:linux-aarch64-package:
     extends:
         - .rsync_upload_binary
         - .run_only_for_package
@@ -694,7 +694,7 @@ b:macos-package:
     needs:
         - p:doc-package
 
-.u:macos-package:
+u:macos-package:
     extends:
         - .rsync_upload_binary
         - .run_only_for_package
@@ -717,7 +717,7 @@ b:macos10.10-package:
     needs:
         - p:doc-package
 
-.u:macos10.10-package:
+u:macos10.10-package:
     extends:
         - .rsync_upload_binary
         - .run_only_for_package

+ 7 - 0
Help/release/dev/0-sample-topic.rst

@@ -0,0 +1,7 @@
+0-sample-topic
+--------------
+
+* This is a sample release note for the change in a topic.
+  Developers should add similar notes for each topic branch
+  making a noteworthy change.  Each document should be named
+  and titled to match the topic name to avoid merge conflicts.

+ 2 - 0
Help/release/index.rst

@@ -7,6 +7,8 @@ CMake Release Notes
   This file should include the adjacent "dev.txt" file
   in development versions but not in release versions.
 
+.. include:: dev.txt
+
 Releases
 ========
 

+ 2 - 2
Source/CMakeVersion.cmake

@@ -1,8 +1,8 @@
 # CMake version number components.
 set(CMake_VERSION_MAJOR 3)
 set(CMake_VERSION_MINOR 23)
-set(CMake_VERSION_PATCH 0)
-set(CMake_VERSION_RC 0)
+set(CMake_VERSION_PATCH 20220203)
+#set(CMake_VERSION_RC 0)
 set(CMake_VERSION_IS_DIRTY 0)
 
 # Start with the full version number used in tags.  It has no dev info.