Skip to content

Commit c171023

Browse files
committed
Release 1.0.1
Signed-off-by: Andreas Maier <andreas.r.maier@gmx.de>
1 parent 60f0725 commit c171023

File tree

2 files changed

+20
-34
lines changed

2 files changed

+20
-34
lines changed

docs/changes.rst

Lines changed: 19 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,10 @@ Change log
55
==========
66

77

8-
nocaselist 1.0.1.dev1
9-
---------------------
10-
11-
Released: not yet
12-
13-
**Incompatible changes:**
8+
nocaselist 1.0.1
9+
----------------
1410

15-
**Deprecations:**
11+
Released: 2020-07-28
1612

1713
**Bug fixes:**
1814

@@ -27,45 +23,35 @@ Released: not yet
2723

2824
**Enhancements:**
2925

30-
* Test: Coveralls now runs on all python versions, merging the result.
31-
(See issue #17)
32-
33-
* Test: Added support for testing against standard list, by adding a new
34-
make target 'testlist', and running that test on the Travis and Appveyor CIs.
35-
(See issue #16)
36-
3726
* Removed enforcement of Python version at run time. (See issue #18)
3827

39-
* Docs: Switched Sphinx theme to sphinx_rtd_theme (See issue #19)
40-
41-
* Docs: Documented exceptions that can be raised, in all methods.
42-
43-
* Docs: Switched links to items in the Python documentation to go to Python 3
44-
instead of Python 2.
45-
4628
* Added support for the clear() method on Python 2.7 (where the built-in list
4729
class does not support it yet). (See issue #30)
4830

49-
* Docs: Clarified that NocaseList supports the functionality of the built-in
50-
list class as of Python 3.8, including all methods that have been added since
51-
Python 2.7, on all Python versions.
31+
* The `*=` operator now modifies the left hand operand list in place, instead of
32+
returning a new list. Note that both is correct behavior. (Part of issue #27)
5233

53-
<<<<<<< HEAD
5434
* Improved the performance of initializing a NocaseList object by copying
5535
the internal lower-cased list when possible, instead of rebuilding it from
5636
the original list.
57-
=======
58-
* The `*=` operator now modifies the left hand operand list in place, instead of
59-
returning a new list. Note that both is correct behavior. (Part of issue #27)
60-
>>>>>>> 76dc790... Fixed the incorrect behavior of the `*` and `*=` operators
6137

62-
**Cleanup:**
38+
* Test: Coveralls now runs on all python versions, merging the result.
39+
(See issue #17)
6340

64-
**Known issues:**
41+
* Test: Added support for testing against standard list, by adding a new
42+
make target 'testlist', and running that test on the Travis and Appveyor CIs.
43+
(See issue #16)
6544

66-
* See `list of open issues`_.
45+
* Docs: Clarified that NocaseList supports the functionality of the built-in
46+
list class as of Python 3.8, including all methods that have been added since
47+
Python 2.7, on all Python versions.
48+
49+
* Docs: Documented exceptions that can be raised, in all methods.
6750

68-
.. _`list of open issues`: https://github.com/pywbem/nocaselist/issues
51+
* Docs: Switched Sphinx theme to sphinx_rtd_theme (See issue #19)
52+
53+
* Docs: Switched links to items in the Python documentation to go to Python 3
54+
instead of Python 2.
6955

7056

7157
nocaselist 1.0.0

nocaselist/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
#:
1010
#: * "M.N.P.dev1": Development level 1 of a not yet released version M.N.P
1111
#: * "M.N.P": A released version M.N.P
12-
__version__ = '1.0.1.dev1'
12+
__version__ = '1.0.1'

0 commit comments

Comments
 (0)