From 354e0eddfcbdb11f0aaa4c89391287713dbd8e96c19f763c1c1d8dee903d5694 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Tue, 7 Jul 2020 07:41:08 +0000 Subject: [PATCH] Accepting request 819060 from home:mnhauke - Update to version 1.3.0 * add `bitarray.util.make_endian()` * `util.ba2hex()` and `util.hex2ba()` now also support little-endian * add `bitarray.get_default_endian()` * made first argument of initializer a positional-only parameter * remove `.fromstring()` and `.tostring()` methods, these have been deprecated 8 years ago, since version 0.4.0 * add `__all__` in `bitarray/__init__.py` * drop Python 3.3 and 3.4 support - Update to version 1.2.2 * `util.ba2hex` now always return a string object (instead of bytes object for Python 3), see issue #94 * `util.hex2ba` allows a unicode object as input on Python 2 * Determine 64-bitness of interpreter in a cross-platform fashion #91, in order to better support PyPy OBS-URL: https://build.opensuse.org/request/show/819060 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bitarray?expand=0&rev=3 --- bitarray-1.2.1.tar.gz | 3 --- bitarray-1.3.0.tar.gz | 3 +++ python-bitarray.changes | 20 ++++++++++++++++++++ python-bitarray.spec | 2 +- 4 files changed, 24 insertions(+), 4 deletions(-) delete mode 100644 bitarray-1.2.1.tar.gz create mode 100644 bitarray-1.3.0.tar.gz diff --git a/bitarray-1.2.1.tar.gz b/bitarray-1.2.1.tar.gz deleted file mode 100644 index 57997a7..0000000 --- a/bitarray-1.2.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ff76dca321e7720e4287fcdd10924c776e9bded7efc2410214f4a8e6cda0ccec -size 61675 diff --git a/bitarray-1.3.0.tar.gz b/bitarray-1.3.0.tar.gz new file mode 100644 index 0000000..17caf1c --- /dev/null +++ b/bitarray-1.3.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d460a667a3e2d61acf467ff688b5744df20639498146343d8823fcdde3801767 +size 63660 diff --git a/python-bitarray.changes b/python-bitarray.changes index 73ca972..df58269 100644 --- a/python-bitarray.changes +++ b/python-bitarray.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Mon Jul 6 18:40:25 UTC 2020 - Martin Hauke + +- Update to version 1.3.0 + * add `bitarray.util.make_endian()` + * `util.ba2hex()` and `util.hex2ba()` now also support + little-endian + * add `bitarray.get_default_endian()` + * made first argument of initializer a positional-only parameter + * remove `.fromstring()` and `.tostring()` methods, these have + been deprecated 8 years ago, since version 0.4.0 + * add `__all__` in `bitarray/__init__.py` + * drop Python 3.3 and 3.4 support +- Update to version 1.2.2 + * `util.ba2hex` now always return a string object (instead of + bytes object for Python 3), see issue #94 + * `util.hex2ba` allows a unicode object as input on Python 2 + * Determine 64-bitness of interpreter in a cross-platform + fashion #91, in order to better support PyPy + ------------------------------------------------------------------- Tue Mar 24 18:38:34 UTC 2020 - Martin Hauke diff --git a/python-bitarray.spec b/python-bitarray.spec index d6fd7d8..86dcff5 100644 --- a/python-bitarray.spec +++ b/python-bitarray.spec @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-bitarray -Version: 1.2.1 +Version: 1.3.0 Release: 0 Summary: Efficient Arrays of Booleans License: Python-2.0