SHA256
1
0
forked from pool/python-pylru
Files
python-pylru/python-pylru.changes
Daniel Garcia 90803aa3f2 Accepting request 1008068 from home:yarunachalam:branches:devel:languages:python
- Update to Version 1.2.1
  * Small optimization to popitem().
  * Improved comments, removed whitespace, etc.
  * Added __getstate__() and __setstate__().
  * Moved from distutils to setuptools in setup.py
  * Moved readme to Restructured Text.
- Update to Version 1.2.0
  * Renamed the markdown formatted README.txt to README.md
  * Updated documentation.
  * Added optional callback to FunctionCacheManager.
  * Merge pull request #28 from marc1n/master
  * Minimize memory consuption of _dlnode
  * Merge pull request #26 from bpsuntrup/master
  * Add optional callback funtionality to lrudecorator.
- Update to version to 1.1.0
  * Added pop, popitem, and setdefault methods to lrucache class.
  * Improved update() method of lrucache.
  * Added len() method to WriteBackCacheManager.
  * Simplified logic of a couple __getitem__ implementations.
  * Cleaned up some of the comments and whitespace.
  * Merge pull request #22 from btimby/master
  * Undo whitespace changes.
  * Added update() method.
  * Merge pull request #20 from pp-qq/patch-1
  * refactor(lrucache): improve lrucache.get()
  * Fixes #13, a bug in lrudecorator.
  * Small change to README.
  * Small change to README.
  * Moved version to 1.0.8
  * Added documentation for FunctionCacheManager.

OBS-URL: https://build.opensuse.org/request/show/1008068
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pylru?expand=0&rev=4
2022-10-07 07:13:05 +00:00

46 lines
1.8 KiB
Plaintext

-------------------------------------------------------------------
Wed Oct 5 00:23:31 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to Version 1.2.1
* Small optimization to popitem().
* Improved comments, removed whitespace, etc.
* Added __getstate__() and __setstate__().
* Moved from distutils to setuptools in setup.py
* Moved readme to Restructured Text.
- Update to Version 1.2.0
* Renamed the markdown formatted README.txt to README.md
* Updated documentation.
* Added optional callback to FunctionCacheManager.
* Merge pull request #28 from marc1n/master
* Minimize memory consuption of _dlnode
* Merge pull request #26 from bpsuntrup/master
* Add optional callback funtionality to lrudecorator.
- Update to version to 1.1.0
* Added pop, popitem, and setdefault methods to lrucache class.
* Improved update() method of lrucache.
* Added len() method to WriteBackCacheManager.
* Simplified logic of a couple __getitem__ implementations.
* Cleaned up some of the comments and whitespace.
* Merge pull request #22 from btimby/master
* Undo whitespace changes.
* Added update() method.
* Merge pull request #20 from pp-qq/patch-1
* refactor(lrucache): improve lrucache.get()
* Fixes #13, a bug in lrudecorator.
* Small change to README.
* Small change to README.
* Moved version to 1.0.8
* Added documentation for FunctionCacheManager.
* lrudecorator now updates the metadata to look more like the wrapped function.
* Refactored lrudecorator using FunctionCacheManager.
* Added clear() and size() to FunctionCacheManager.
* Added FunctionCacheManager.
-------------------------------------------------------------------
Fri Dec 6 20:50:22 UTC 2019 - Erico Mendonca <erico.mendonca@suse.com>
- Initial version.