mirror of https://github.com/mahmoud/boltons.git
bumping setup.py for 16.0.0 release (and mostly updated CHANGELOG accordingly)
This commit is contained in:
parent
495d5c2e96
commit
b01e9f4901
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -1,12 +1,20 @@
|
||||||
boltons Changelog
|
boltons Changelog
|
||||||
=================
|
=================
|
||||||
|
|
||||||
Changelog
|
Since February 20, 2013 there have been 18 releases and 721 commits for
|
||||||
=========
|
|
||||||
|
|
||||||
Since February 20, 2013 there have been 17 releases and 714 commits for
|
|
||||||
an average of one 42-commit release every 8.4 weeks.
|
an average of one 42-commit release every 8.4 weeks.
|
||||||
|
|
||||||
|
16.0.0
|
||||||
|
------
|
||||||
|
|
||||||
|
One important fix and one small but handy string function.
|
||||||
|
|
||||||
|
* Fixed an [LRU][cacheutils.LRU] bug related to the 15.1.1
|
||||||
|
refactor. Also enhanced LRU testing with doubly-linked list
|
||||||
|
invariant enforcement.
|
||||||
|
* Added [strutils.indent][strutils.indent], the counterpart to
|
||||||
|
[textwrap.dedent](https://docs.python.org/2/library/textwrap.html#textwrap.dedent).
|
||||||
|
|
||||||
15.1.1
|
15.1.1
|
||||||
------
|
------
|
||||||
*(November 18, 2015)*
|
*(November 18, 2015)*
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -13,7 +13,7 @@ from setuptools import setup
|
||||||
|
|
||||||
|
|
||||||
__author__ = 'Mahmoud Hashemi'
|
__author__ = 'Mahmoud Hashemi'
|
||||||
__version__ = '15.1.2dev'
|
__version__ = '16.0.0'
|
||||||
__contact__ = 'mahmoudrhashemi@gmail.com'
|
__contact__ = 'mahmoudrhashemi@gmail.com'
|
||||||
__url__ = 'https://github.com/mahmoud/boltons'
|
__url__ = 'https://github.com/mahmoud/boltons'
|
||||||
__license__ = 'BSD'
|
__license__ = 'BSD'
|
||||||
|
|
Loading…
Reference in New Issue