Skip to content

Commit

Permalink
Release 4.18: Added humanfriendly.text.generate_slug() function
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Feb 21, 2019
1 parent d723aa1 commit 03d1db4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,19 @@ Changelog`_ . This project adheres to `semantic versioning`_.
.. _Keep a Changelog: http://keepachangelog.com/
.. _semantic versioning: http://semver.org/

`Release 4.18`_ (2019-02-21)
----------------------------

- Added ``humanfriendly.text.generate_slug()`` function.

- Fixed "invalid escape sequence" DeprecationWarning (pointed out by Python >= 3.6).

- Fought Travis CI (for way too long) in order to restore Python 2.6, 2.7, 3.4,
3.5, 3.6 and 3.7 compatibility in the Travis CI configuration (unrelated to
the ``humanfriendly`` package itself).

.. _Release 4.18: https://github.com/xolox/python-humanfriendly/compare/4.17...4.18

`Release 4.17`_ (2018-10-20)
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion humanfriendly/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
from humanfriendly.compat import is_string, monotonic

# Semi-standard module versioning.
__version__ = '4.17'
__version__ = '4.18'

# Spinners are redrawn at most this many seconds.
minimum_spinner_interval = 0.2
Expand Down

0 comments on commit 03d1db4

Please sign in to comment.