From 4e1f17617f8d6fbf00f6e72d4c59a3f9f089c5b1 Mon Sep 17 00:00:00 2001 From: Yusuke Matsui Date: Mon, 13 Nov 2023 00:30:03 +0000 Subject: [PATCH 1/2] updated readme and changelog --- README.md | 2 +- docs/source/changelog.rst | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f3e0f0d..803d16a 100644 --- a/README.md +++ b/README.md @@ -179,4 +179,4 @@ e1.merge(e2) # Now e1 contains both X1 and X2 ## Credits - The logo is designed by [@richardbmx](https://github.com/richardbmx) ([#4](https://github.com/matsui528/rii/issues/4)) - The windows implementation is by [@ashleyabraham](https://github.com/ashleyabraham) ([#42](https://github.com/matsui528/rii/pull/42)) -- Fix the build by [@timzag](https://github.com/timzag) ([#50](https://github.com/matsui528/rii/pull/50)) +- Fixing the build ([#50](https://github.com/matsui528/rii/pull/50)) and supporting for ARM CPUs ([#58](https://github.com/matsui528/rii/pull/58)) by [@timzag](https://github.com/timzag) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index f8f9782..a813347 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -3,6 +3,20 @@ Changelog See `releases `_ for the latest changes. +v0.2.11 (November 13, 2023) +---------------------------- +- Support ARM CPUs. +- Further clean up the build system. +- `See here for a list of PRs `_ + + + +v0.2.10 (October 27, 2023) +---------------------------- +- Update the build system to support handling the latest pip. +- `See here for a list of PRs `_ + + v0.2.9 (August 06, 2022) ---------------------------- - `#45 `_ Support for modern Windows CI (windows-2022). Support Python 3.9 and 3.10. Drop the support for Python 3.5. From 896728c6955bb7f930e65d068055d115a01b02a2 Mon Sep 17 00:00:00 2001 From: Yusuke Matsui Date: Mon, 13 Nov 2023 00:31:52 +0000 Subject: [PATCH 2/2] updated the version --- docs/source/changelog.rst | 2 -- rii/__init__.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index a813347..84e1581 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -9,8 +9,6 @@ v0.2.11 (November 13, 2023) - Further clean up the build system. - `See here for a list of PRs `_ - - v0.2.10 (October 27, 2023) ---------------------------- - Update the build system to support handling the latest pip. diff --git a/rii/__init__.py b/rii/__init__.py index af7bcc0..cd6cf5f 100644 --- a/rii/__init__.py +++ b/rii/__init__.py @@ -1,5 +1,5 @@ __all__ = ['Rii'] -__version__ = '0.2.10' +__version__ = '0.2.11' from .rii import Rii