Skip to content

Bump version 3.0.0 #253

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
Changes
=======

Version 3.0.0
-------------

1. Drop support for `Python 3.7` and `Python 3.8`

2. Add official support for `Python 3.12`, `Python 3.13`

3. Add official support for `arm` processors

4. Make many tests more robust for more combinations of processors / c++ standards

5. Update CI with newer `castxml` versions

5. Removed the `__va_list` declaration on `arm` from the declaration tree

6. Fix issues with spaces in c++ templates (containers traits)
I have seen different scenarios regarding spaces in templates.
On some platforms there might be spaces, on some others not.
This "might" be a breaking change if you used to compare declarations manually,
but from a pygccxml point of view all comparisons / search functions are still
working as before.
Anyway this is a 3.0.0 major version so at least you have been warned.


Version 2.6.1
-------------

Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ keywords = [
"CastXML",
"gccxml",
]
version = "2.7.0"
version = "3.0.0"

classifiers = [
"Development Status :: 5 - Production/Stable",
Expand All @@ -27,8 +27,6 @@ classifiers = [
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down