From f4547abc7e981c9b4533c83659e0648be0a291e7 Mon Sep 17 00:00:00 2001 From: Malcolm Smith Date: Sun, 24 Dec 2023 19:29:51 +0000 Subject: [PATCH] Put features before removals in changelog --- VERSION.txt | 2 +- product/runtime/docs/sphinx/changelog.rst | 34 +++++++++++------------ pyproject.toml | 5 ++-- 3 files changed, 20 insertions(+), 21 deletions(-) diff --git a/VERSION.txt b/VERSION.txt index 2bbd2b4b42..d14dfbac36 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -15.0.1 +15.1.0 diff --git a/product/runtime/docs/sphinx/changelog.rst b/product/runtime/docs/sphinx/changelog.rst index c25190959d..aae85ec6d0 100644 --- a/product/runtime/docs/sphinx/changelog.rst +++ b/product/runtime/docs/sphinx/changelog.rst @@ -8,16 +8,6 @@ Change log 15.0.1 (2023-12-24) =================== -Backward incompatible ---------------------- - -- The 32-bit ABIs `armeabi-v7a` and `x86` will no longer be supported on Python - 3.12 and later. (`#709 `__) -- Android Gradle plugin versions 4.1 and 4.2 are no longer supported. (`#787 - `__, `#840 - `__) - - Features -------- @@ -48,6 +38,16 @@ Features - Update pkg_resources from setuptools version 68.2.2. +Deprecations and Removals +------------------------- + +- The 32-bit ABIs `armeabi-v7a` and `x86` will no longer be supported on Python + 3.12 and later. (`#709 `__) +- Android Gradle plugin versions 4.1 and 4.2 are no longer supported. (`#787 + `__, `#840 + `__) + + Bugfixes -------- @@ -66,13 +66,6 @@ Bugfixes 14.0.2 (2023-01-29) =================== -Backward incompatible ---------------------- - -- :ref:`buildPython` must now be at least Python 3.7. (`#713 - `__) - - Features -------- @@ -101,6 +94,13 @@ Features - Update to pip version 20.1. +Deprecations and Removals +------------------------- + +- :ref:`buildPython` must now be at least Python 3.7. (`#713 + `__) + + Bugfixes -------- diff --git a/pyproject.toml b/pyproject.toml index 3332129f79..e6a0c4aee2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,10 +4,9 @@ filename = "product/runtime/docs/sphinx/changelog.rst" issue_format = "`#{issue} `__" wrap = true -# Rename "Deprecations and Removals" to match the term used in older versions, and set the -# section order to match the components of the version number. +# Roughly in order of importance, but put the good news at the top. type = [ - { directory = "removal", name = "Backward incompatible", showcontent = true }, { directory = "feature", name = "Features", showcontent = true }, + { directory = "removal", name = "Deprecations and Removals", showcontent = true }, { directory = "bugfix", name = "Bugfixes", showcontent = true }, ] \ No newline at end of file