-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare for 2024.6.20 release (#330)
- Loading branch information
Showing
10 changed files
with
65 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,45 @@ | ||
Latest Release (``2023.7.29.dev1``) | ||
=================================== | ||
Latest Release (``2024.6.20``) | ||
============================== | ||
|
||
|pypi| |docs| | ||
|
||
``libbezzier`` Changes | ||
---------------------- | ||
|
||
Packaging | ||
~~~~~~~~~ | ||
|
||
- Stop building with `-static` on Windows | ||
(`#311 <https://github.com/dhermes/bezier/pull/311>`__). | ||
This is entirely enabled by the amazing | ||
`delvewheel <https://github.com/adang1345/delvewheel>`__ project (non-static | ||
dependencies can now easily be packaged into a built wheel for Python). | ||
|
||
Python Changes | ||
-------------- | ||
|
||
Packaging | ||
~~~~~~~~~ | ||
|
||
- Added support for Python 3.12 | ||
(`#315 <https://github.com/dhermes/bezier/pull/315>`__). | ||
- Dropped support for Python 3.8 | ||
(`#310 <https://github.com/dhermes/bezier/pull/310>`__). | ||
|
||
.. |pypi| image:: https://img.shields.io/pypi/v/bezier/2023.7.29.dev1.svg | ||
:target: https://pypi.org/project/bezier/2023.7.29.dev1/ | ||
:alt: PyPI link to release 2023.7.29.dev1 | ||
.. |docs| image:: https://readthedocs.org/projects/bezier/badge/?version=2023.7.29.dev1 | ||
:target: https://bezier.readthedocs.io/en/2023.7.29.dev1/ | ||
:alt: Documentation for release 2023.7.29.dev1 | ||
(`#310 <https://github.com/dhermes/bezier/pull/310>`__) | ||
and Python 3.9 | ||
(`#315 <https://github.com/dhermes/bezier/pull/315>`__). | ||
|
||
Documentation | ||
------------- | ||
|
||
- Add `DEVELOPMENT.rst` section about configuring a shell and compilers for | ||
Windows development | ||
(`#311 <https://github.com/dhermes/bezier/pull/311>`__). This had been a | ||
hodge podge of local and remote (CI) development for the last 5+ years, so | ||
this a big milestone! | ||
|
||
.. |pypi| image:: https://img.shields.io/pypi/v/bezier/2024.6.20.svg | ||
:target: https://pypi.org/project/bezier/2024.6.20/ | ||
:alt: PyPI link to release 2024.6.20 | ||
.. |docs| image:: https://readthedocs.org/projects/bezier/badge/?version=2024.6.20 | ||
:target: https://bezier.readthedocs.io/en/2024.6.20/ | ||
:alt: Documentation for release 2024.6.20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5) | |
|
||
project( | ||
bezier | ||
VERSION 2023.7.28 | ||
VERSION 2024.6.20 | ||
LANGUAGES Fortran C) | ||
set(AUTHOR "Danny Hermes") | ||
set(AUTHOR_DETAILS "[email protected]") | ||
|
@@ -57,7 +57,7 @@ if(${BUILD_SHARED_LIBS}) | |
set_target_properties( | ||
bezier | ||
PROPERTIES VERSION ${bezier_VERSION} | ||
SOVERSION 2023 | ||
SOVERSION 2024 | ||
POSITION_INDEPENDENT_CODE ON) | ||
endif() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters