From b01e9f4901a48a3b33454eeb5a858cab5ecbc554 Mon Sep 17 00:00:00 2001 From: Mahmoud Hashemi Date: Sun, 24 Jan 2016 02:16:12 -0800 Subject: [PATCH] bumping setup.py for 16.0.0 release (and mostly updated CHANGELOG accordingly) --- CHANGELOG.md | 16 ++++++++++++---- setup.py | 2 +- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ab24df..b022ff8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,20 @@ boltons Changelog ================= -Changelog -========= - -Since February 20, 2013 there have been 17 releases and 714 commits for +Since February 20, 2013 there have been 18 releases and 721 commits for 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 ------ *(November 18, 2015)* diff --git a/setup.py b/setup.py index 089a3ea..102a1b3 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ from setuptools import setup __author__ = 'Mahmoud Hashemi' -__version__ = '15.1.2dev' +__version__ = '16.0.0' __contact__ = 'mahmoudrhashemi@gmail.com' __url__ = 'https://github.com/mahmoud/boltons' __license__ = 'BSD'