diff --git a/CHANGE_LOG b/CHANGE_LOG index 1a22bd02..8c74e460 100644 --- a/CHANGE_LOG +++ b/CHANGE_LOG @@ -1,8 +1,8 @@ -2021-XX-XX 2.1.2: +2021-06-13 2.1.2: ------------------- * support type hinting for all Python 3 versions (that bitarray supports, - i.e. 3.5 and higher currently), see #128 - * add explicit endianness to two tests, fixes issue #127 + 3.5 and higher currently), fixed #128 + * add explicit endianness to two tests, fixes #127 2021-06-11 2.1.1: diff --git a/README.rst b/README.rst index fe07f9cb..c7619e63 100644 --- a/README.rst +++ b/README.rst @@ -62,7 +62,7 @@ Once you have installed the package, you may want to test it: $ python -c 'import bitarray; bitarray.test()' bitarray is installed in: /Users/ilan/bitarray/bitarray - bitarray version: 2.1.1 + bitarray version: 2.1.2 sys.version: 2.7.15 (default, Mar 5 2020, 14:58:04) [GCC Clang 9.0.1] sys.prefix: /Users/ilan/Mini3/envs/py27 pointer size: 64 bit @@ -401,7 +401,7 @@ and can therefore be used as a dictionary key: Reference ========= -bitarray version: 2.1.1 -- `change log `__ +bitarray version: 2.1.2 -- `change log `__ In the following, ``item`` and ``value`` are usually a single bit - an integer 0 or 1. diff --git a/doc/changelog.rst b/doc/changelog.rst index 0358989c..3172113f 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,13 @@ Change log ========== +**2.1.2** (2021-06-13): + +* support type hinting for all Python 3 versions (that bitarray supports, + 3.5 and higher currently), fixed `#128 `__ +* add explicit endianness to two tests, fixes `#127 `__ + + **2.1.1** (2021-06-11): * add type hinting (see PEP 484, 561) using stub (``.pyi``) files diff --git a/doc/reference.rst b/doc/reference.rst index 607b3b42..ccfc9855 100644 --- a/doc/reference.rst +++ b/doc/reference.rst @@ -1,7 +1,7 @@ Reference ========= -bitarray version: 2.1.1 -- `change log `__ +bitarray version: 2.1.2 -- `change log `__ In the following, ``item`` and ``value`` are usually a single bit - an integer 0 or 1.