Sider Changelog¶
Version 0.3.1¶
Released on August 16, 2015.
- Fixed a
SyntaxErrorofsetup.pyscript on Python 3. [issue #10 by Swen Mun]
Version 0.3.0¶
Released on December 23, 2014. Beta release.
- Now Sider supports Python 3.3 or higher. Of course Python 2.6, Python 2.7, and PyPy are still supported. Thanks to Eunchong Yu. [issue #4 by Eunchong Yu]
- Fixed a bug that
SortedSetincorrectly saves values on Redis 2.4.0 or higher. [issue #3 by Eunchong Yu] - Added
sider.types.UUIDtype. [issue #5 by Eunchong Yu] - Fixed missing incrementation of
List.__iter__(). [issue #6 by Eunchong Yu] - Added a workaround to http://bugs.python.org/issue4806. [issue #7 by Eunchong Yu]
Version 0.2.0¶
Released on April 30, 2012. Alpha release.
- Added
sider.transactionmodule. - Added
sider.sortedsetmodule. - Added
sider.types.SortedSettype. - Added
sider.types.Timeandsider.types.TZTimetypes. - Added
sider.types.TimeDeltatype. - Introduced
sider.types.Tupletype for ad-hoc composition of multiple types. - The extensible namespace package
sider.extwas introduced. - Added
sider.threadlocalmodule. - Added
sider.session.Session.verbose_transaction_erroroption.
Version 0.1.3¶
Released on April 21, 2012. Pre-alpha release.
- Now
sider.hash.Hashobjects show their contents forrepr(). - Now persist objects show their key name for
repr(). - Added
sider.lazyimport.exceptionsdeferred module.
Version 0.1.2¶
Released on April 11, 2012. Pre-alpha release.
- Now
sider.session.Sessiontakesredis.client.StrictRedisobject instead ofredis.client.Rediswhich is deprecated. - Added
sider.exceptionsmodule. - Added
sider.warnings.SiderWarningbase class. - Fixed a bug of
sider.list.List.insert()for index -1. Previously it simply appends an element to the list (and that is an incorrect behavior), but now it inserts an element into the right before of its last element.
Version 0.1.1¶
Released on March 29, 2012. Pre-alpha release.
- Added
sider.types.Booleantype. - Added
sider.types.Datetype. - Added
sider.datetime.FixedOffsettzinfo subtype. - Added
sider.types.DateTimeandTZDateTimetypes. - Now you can check the version by this command:
python -m sider.version.
Version 0.1.0¶
Released on March 23, 2012. Pre-alpha release.