Skip to content

Commit

Permalink
New release: 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
clarete committed Jan 16, 2021
1 parent 47f731c commit 177e4d0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,3 +151,13 @@ SOFTWARE.
### Logo by

Kimberly Chandler, from The Noun Project

### Changelog

#### 0.1.4

* Add cursed() context manager/decorator
* Conditionally build test C extension
* Allow cursing dunder methods with non functions
* Fix dual licensing issues. Distribute both GPLv3 & MIT license
files.
4 changes: 2 additions & 2 deletions forbiddenfruit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# forbiddenfruit - Patch built-in python objects
#
# Copyright (c) 2013,2019 Lincoln de Sousa <[email protected]>
# Copyright (c) 2013-2020 Lincoln de Sousa <[email protected]>
#
# This program is dual licensed under GPLv3 and MIT.
#
Expand Down Expand Up @@ -55,7 +55,7 @@
# Python 3 support
import builtins as __builtin__

__version__ = '0.1.3'
__version__ = '0.1.4'

__all__ = 'curse', 'curses', 'reverse'

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
if __name__ == '__main__':
setup(
name='forbiddenfruit',
version='0.1.3',
version='0.1.4',
description='Patch python built-in objects',
long_description=local_file('README.md'),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 177e4d0

Please sign in to comment.