Skip to content

Commit

Permalink
Put features before removals in changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsmith committed Dec 24, 2023
1 parent 4b2a727 commit f4547ab
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 21 deletions.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
15.0.1
15.1.0
34 changes: 17 additions & 17 deletions product/runtime/docs/sphinx/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/chaquo/chaquopy/issues/709>`__)
- Android Gradle plugin versions 4.1 and 4.2 are no longer supported. (`#787
<https://github.com/chaquo/chaquopy/issues/787>`__, `#840
<https://github.com/chaquo/chaquopy/issues/840>`__)


Features
--------

Expand Down Expand Up @@ -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 <https://github.com/chaquo/chaquopy/issues/709>`__)
- Android Gradle plugin versions 4.1 and 4.2 are no longer supported. (`#787
<https://github.com/chaquo/chaquopy/issues/787>`__, `#840
<https://github.com/chaquo/chaquopy/issues/840>`__)


Bugfixes
--------

Expand All @@ -66,13 +66,6 @@ Bugfixes
14.0.2 (2023-01-29)
===================

Backward incompatible
---------------------

- :ref:`buildPython` must now be at least Python 3.7. (`#713
<https://github.com/chaquo/chaquopy/issues/713>`__)


Features
--------

Expand Down Expand Up @@ -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
<https://github.com/chaquo/chaquopy/issues/713>`__)


Bugfixes
--------

Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ filename = "product/runtime/docs/sphinx/changelog.rst"
issue_format = "`#{issue} <https://github.com/chaquo/chaquopy/issues/{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 },
]

0 comments on commit f4547ab

Please sign in to comment.