diff --git a/CHANGELOG.md b/CHANGELOG.md index 21b708ef..73a1f5be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,19 @@ Changes ======= -Next version ------------- +Version 2.3.0 +------------- 1. Drop support for ```Python 3.5``` +2. Make type equivalence check for string and ostream more robust (`is_std_string`, `is_std_wstring`, `is_std_ostream`, `is_std_wostream`) + +3. Skip GCC's __va_list fields on AArch644 + +4. Add search_path arg to `find_xml_generator + +5. Publish pygccxml as source distribution too + Version 2.2.1 ------------- diff --git a/docs/releasing.rst b/docs/releasing.rst index 9e175142..f61901a1 100644 --- a/docs/releasing.rst +++ b/docs/releasing.rst @@ -49,9 +49,13 @@ Cleanup your dist: ``rm -rf dist`` -The wheels are built with: +Make sur your build tools are up to date -``python3 setup.py bdist_wheel --universal`` +`python3 -m pip install --upgrade build` + +The wheels and the source distribution are built with: + +``python3 -m build`` They are uploaded with: diff --git a/pygccxml/__init__.py b/pygccxml/__init__.py index aea12f2b..d5e63e73 100644 --- a/pygccxml/__init__.py +++ b/pygccxml/__init__.py @@ -41,4 +41,4 @@ # TODO: # 1. Add "explicit" property for constructors -__version__ = '2.2.1' +__version__ = '2.3.0'