blob: 3a84017ecdca32f3ea04340b4ad6e27916027688 [file] [log] [blame]
Ian Cordasco8274b152016-08-29 19:11:46 -05001Changelog - uritemplate
2=======================
3
Brett Cannon927adb42019-12-18 16:24:36 -080043.0.1 - 2019-12-19
Brett Cannone2c103d2019-12-13 11:43:50 -08005------------------
6
Brett Cannone2c103d2019-12-13 11:43:50 -08007- Update to Python 3.6, 3.7, and 3.8
Thomas A Caswell4edb2812019-12-16 22:21:54 -05008- Drop support for Python 2.6, 3.2, and 3.3
Brett Cannone2c103d2019-12-13 11:43:50 -08009- Ignore ``None`` in list argument expansion
10- Handle a list with an empty string appropriately
11
123.0.0 - 2016-08-29
13------------------
14
15- Match major version number of uritemplate.py
16
Ian Cordasco8274b152016-08-29 19:11:46 -0500172.0.0 - 2016-08-29
18------------------
19
20- Merge uritemplate.py into uritemplate
21
22
23Changelog - uritemplate.py
24==========================
Ian Cordascof8180352013-05-14 00:29:17 -040025
Ian Cordascoa0de6c72016-08-31 17:18:01 -0500263.0.2 - 2015-08-30
27------------------
28
29- Fix meta-package requirements.
30
Ian Cordasco71c85272016-08-29 19:32:59 -0500313.0.1 - 2015-08-29
32------------------
33
34- Deprecate in favor of uritemplate. This package is now a metapackage that
35 depends on uritemplate.
36
Ian Cordasco6c1d9ef2016-08-20 06:14:54 -0500372.0.0 - 2016-08-20
38------------------
39
40- Relicense uritemplate.py as Apache 2 and BSD (See
41 https://github.com/sigmavirus24/uritemplate/pull/23)
42
Ian Cordasco07e88132016-08-18 11:03:34 -0500431.0.1 - 2016-08-18
44------------------
45
46- Fix some minor packaging problems.
47
Ian Cordascoa8e3c382016-08-17 16:26:27 -0500481.0.0 - 2016-08-17
49------------------
50
51- Fix handling of Unicode values on Python 2.6 and 2.7 for urllib.quote.
52
53- Confirm public stable API via version number.
54
Ian Cordascoc8ed5312013-10-22 16:34:14 -0500550.3.0 - 2013-10-22
56------------------
57
Brett Cannon927adb42019-12-18 16:24:36 -080058- Add ``#partial`` to partially expand templates and return new instances of
Ian Cordascoc8ed5312013-10-22 16:34:14 -050059 ``URITemplate``.
60
Ian Cordasco5df53bf2013-07-26 17:44:44 -0500610.2.0 - 2013-07-26
62------------------
63
64- Refactor the library a bit and add more tests.
65
66- Backwards incompatible with 0.1.x if using ``URIVariable`` directly from
67 ``uritemplate.template``
68
Ian Cordascoff5776e2013-05-19 23:54:59 -0400690.1.1 - 2013-05-19
Ian Cordasco12c6a552013-05-19 20:48:13 -040070------------------
71
72- Add ability to get set of variable names in the current URI
73
74- If there is no value or default given, simply return an empty string
75
Ian Cordascoafc4b2c2013-05-19 23:42:38 -040076- Fix sdist
77
Ian Cordasco12c6a552013-05-19 20:48:13 -0400780.1.0 - 2013-05-14
Ian Cordascof8180352013-05-14 00:29:17 -040079------------------
80
81- Initial Release