2018-09-03 20:18:03 +02:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Mon Sep 3 17:09:12 UTC 2018 - Hans-Peter Jansen <hpj@urpla.net>
|
|
|
|
|
|
|
|
|
|
- don't depend on a certain python devel package, avoids:
|
|
|
|
|
nothing provides python2-devel >= 3.4.1
|
|
|
|
|
such a version will never exist!
|
|
|
|
|
|
2018-08-29 12:49:21 +02:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Wed Aug 29 10:48:21 UTC 2018 - tchvatal@suse.com
|
|
|
|
|
|
|
|
|
|
- Update to 4.3.1:
|
|
|
|
|
* No obvious changelog
|
|
|
|
|
|
2018-04-17 10:09:46 +02:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Tue Apr 17 08:09:34 UTC 2018 - tchvatal@suse.com
|
|
|
|
|
|
|
|
|
|
- Enable testsuite
|
|
|
|
|
|
2018-04-17 08:37:14 +02:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Tue Apr 17 01:52:51 UTC 2018 - arun@gmx.de
|
|
|
|
|
|
|
|
|
|
- update to version 4.2.0:
|
|
|
|
|
* Publish py.typed flag for type hinting analyzers (mypy etc).
|
|
|
|
|
|
2018-02-10 20:37:58 +01:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Sat Feb 10 17:43:52 UTC 2018 - arun@gmx.de
|
|
|
|
|
|
|
|
|
|
- update to version 4.1.0:
|
|
|
|
|
* Fix key casing in Pure Python implementation of CIMultiDict (PR
|
|
|
|
|
#202)
|
|
|
|
|
|
2018-01-17 20:20:21 +01:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Wed Jan 17 03:54:21 UTC 2018 - arun@gmx.de
|
|
|
|
|
|
|
|
|
|
- specfile:
|
|
|
|
|
* update copyright year
|
|
|
|
|
* CHANGES.rst -> docs/changes.rst
|
|
|
|
|
|
|
|
|
|
- update to version 4.0.0:
|
|
|
|
|
* Accept multiple keys in MultiDict.update() and
|
|
|
|
|
CIMultiDict.update() (PR #199)
|
|
|
|
|
|
2017-11-08 16:34:48 +01:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Fri Nov 3 15:55:20 UTC 2017 - arun@gmx.de
|
|
|
|
|
|
|
|
|
|
- specfile:
|
|
|
|
|
* don't package .c files
|
|
|
|
|
|
|
|
|
|
- update to version 3.3.2:
|
|
|
|
|
* Fix tarball (again)
|
|
|
|
|
|
|
|
|
|
- changes from version 3.3.1:
|
|
|
|
|
* Include .c files in tarball (#181)
|
|
|
|
|
|
2017-11-03 15:38:26 +01:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Thu Nov 2 03:07:12 UTC 2017 - arun@gmx.de
|
|
|
|
|
|
|
|
|
|
- update to version 3.3.0:
|
|
|
|
|
* Introduce abstract base classes (#102)
|
|
|
|
|
* Publish OSX binary wheels (#153)
|
|
|
|
|
|
2017-09-20 07:43:40 +02:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Tue Sep 19 17:44:52 UTC 2017 - sean.marlow@suse.com
|
|
|
|
|
|
|
|
|
|
- Update to version 3.2.0:
|
|
|
|
|
+ Fix pickling
|
|
|
|
|
+ Fix equality check when other contains more keys
|
|
|
|
|
+ Fix CIMultiDict copy
|
|
|
|
|
- Pre-compiled shared libraries have been removed from sdist.
|
|
|
|
|
|
2017-07-19 19:42:00 +02:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Wed Jul 19 14:41:55 UTC 2017 - sean.marlow@suse.com
|
|
|
|
|
|
|
|
|
|
- Use package from PyPi via py2pack instead of Github.
|
|
|
|
|
The packages are not the same.
|
2017-11-03 15:38:26 +01:00
|
|
|
|
- Remove compiled shared libraries from package prior to build.
|
2017-07-19 19:42:00 +02:00
|
|
|
|
|
2017-07-14 19:27:52 +02:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Thu Jul 13 22:28:39 UTC 2017 - sean.marlow@suse.com
|
|
|
|
|
|
|
|
|
|
- Update to version 3.1.1:
|
|
|
|
|
- Fix #105: Remove memory leak in istr implementation
|
|
|
|
|
- Update to version 3.1.0:
|
|
|
|
|
- Fix #99: raise RuntimeError on dict iterations if the dict was changed
|
|
|
|
|
- Update __init__.pyi signatures
|
|
|
|
|
- Update to version 3.0.0:
|
|
|
|
|
- Refactor internal data structures: main dict operations are about 100% faster now.
|
|
|
|
|
- Preserve order on multidict updates #68 Updates are md[key] =
|
|
|
|
|
val and md.update(…) calls. Now the last entry is replaced with
|
|
|
|
|
new key/value pair, all previous occurrences are removed. If
|
|
|
|
|
key is not present in dictionary the pair is added to the end
|
|
|
|
|
- Force keys to str instances #88
|
|
|
|
|
- Implement .popall(key[, default]) #84
|
|
|
|
|
- .pop() removes only first occurence, .popone() added #92
|
|
|
|
|
- Implement dict’s version #86
|
|
|
|
|
- Proxies are not pickable anymore #77
|
|
|
|
|
- Update to version 2.1.7:
|
|
|
|
|
- Fix import warning on Python 3.6 #79
|
|
|
|
|
- Update to version 2.1.6:
|
|
|
|
|
- Rebuild the library for fixning missing __spec__ attribute #79
|
|
|
|
|
- Update to version 2.1.5:
|
|
|
|
|
- Build Python 3.6 binary wheels
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Thu Jul 13 21:19:20 UTC 2017 - sean.marlow@suse.com
|
|
|
|
|
|
|
|
|
|
- Move to single spec python3 only.
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Sat Feb 18 15:09:11 UTC 2017 - jengelh@inai.de
|
|
|
|
|
|
|
|
|
|
- Description update
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Mon Jan 9 05:20:13 UTC 2017 - arun@gmx.de
|
|
|
|
|
|
|
|
|
|
- specfile:
|
|
|
|
|
* update copyright year
|
|
|
|
|
|
|
|
|
|
- update to version 2.1.4:
|
|
|
|
|
* Remove LICENSE filename extension @ MANIFEST.in file #31
|
|
|
|
|
|
|
|
|
|
- changes from version 2.1.3 :
|
|
|
|
|
* Add a fastpath for multidict extending by multidict
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Sun Sep 25 16:48:26 UTC 2016 - arun@gmx.de
|
|
|
|
|
|
|
|
|
|
- initial version
|
|
|
|
|
|