Skip to content

Commit c569e17

Browse files
chore(release): 3.2.0
1 parent 8334ddb commit c569e17

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
Changelog
22
=========
3+
4+
[3.2.0](https://github.com/imgix/imgix-python/compare/3.1.2...3.2.0) (2020-06-05)
5+
---------------------------------------------------------------------------------
6+
- feat: create custom srcset ([#63](https://github.com/imgix/imgix-python/pull/63))
7+
- feat: introduce variable image output quality ([#65](https://github.com/imgix/imgix-python/pull/65))
8+
- fix: remove ensure even ([#72](https://github.com/imgix/imgix-python/pull/72))
9+
- feat: throw exceptions from validators ([#77](https://github.com/imgix/imgix-python/pull/77))
10+
- fix: convert tol to float ([#75](https://github.com/imgix/imgix-python/pull/75))
311

4-
[3.1.2](https://github.com/imgix/imgix-python/compare/3.1.1...3.1.2) (2019-03-11)
12+
[3.1.2](https://github.com/imgix/imgix-python/compare/3.1.1...3.1.2) (2020-03-11)
513
---------------------------------------------------------------------------------
614

715
- Fix Python 2/3 compatibility issues

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To begin creating imgix URLs, import the imgix library and create a URL builder.
4141
>>> from imgix import UrlBuilder
4242
>>> ub = UrlBuilder("demo.imgix.net")
4343
>>> ub.create_url("bridge.png", {'w': 100, 'h': 100})
44-
'https://demo.imgix.net/bridge.png?h=100&ixlib=python-3.1.2&w=100'
44+
'https://demo.imgix.net/bridge.png?h=100&ixlib=python-3.2.0&w=100'
4545

4646
```
4747

@@ -63,7 +63,7 @@ To produce a signed URL, you must enable secure URLs on your source and then pro
6363
>>> from imgix import UrlBuilder
6464
>>> ub = UrlBuilder("demo.imgix.net", sign_key="test1234")
6565
>>> ub.create_url("/bridge.png", {'w': 100, 'h': 100})
66-
'https://demo.imgix.net/bridge.png?h=100&ixlib=python-3.1.2&w=100&s=734a86bd4b1353e1d033e0892fcdad3d'
66+
'https://demo.imgix.net/bridge.png?h=100&ixlib=python-3.2.0&w=100&s=734a86bd4b1353e1d033e0892fcdad3d'
6767

6868
```
6969

imgix/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.1.2'
1+
__version__ = '3.2.0'

0 commit comments

Comments
 (0)