From 4f9bb541003d2f13fe7319c4715fd28bd17ef0d3 Mon Sep 17 00:00:00 2001 From: Gabriel Pettier Date: Sat, 30 Oct 2021 11:40:38 +0200 Subject: [PATCH] update CHANGELOG and version --- CHANGELOG.md | 10 ++++++++++ jnius/__init__.py | 2 +- setup_sdist.py | 1 + 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc5e42c0..5baec271 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## [1.4.1](https://github.com/kivy/pyjnius/tree/1.4.0) (2021-10-30) +[Full Changelog](https://github.com/kivy/pyjnius/compare/1.4.0...1.4.1) + +**CI** +- [\#607](https://github.com/kivy/pyjnius/pull/607) Add python3.10 build/release + +**Packaging** +- [\#603](https://github.com/kivy/pyjnius/pull/603) Use platform.machine() as default get_cpu() return value, explicitely support AARCH64 + + ## [1.4.0](https://github.com/kivy/pyjnius/tree/1.4.0) (2021-08-24) [Full Changelog](https://github.com/kivy/pyjnius/compare/1.3.0...1.4.0) diff --git a/jnius/__init__.py b/jnius/__init__.py index ca4ba24e..c824e556 100644 --- a/jnius/__init__.py +++ b/jnius/__init__.py @@ -7,7 +7,7 @@ All the documentation is available at: http://pyjnius.readthedocs.org ''' -__version__ = '1.4.0' +__version__ = '1.4.1' from .env import get_java_setup diff --git a/setup_sdist.py b/setup_sdist.py index d91feff3..a908b038 100644 --- a/setup_sdist.py +++ b/setup_sdist.py @@ -52,6 +52,7 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Topic :: Software Development :: Libraries :: Application Frameworks' ] }