Skip to content

Commit

Permalink
chore(release): 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdeansanchez committed Jun 5, 2020
1 parent 8334ddb commit c569e17
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,15 @@
Changelog
=========

[3.2.0](https://github.com/imgix/imgix-python/compare/3.1.2...3.2.0) (2020-06-05)
---------------------------------------------------------------------------------
- feat: create custom srcset ([#63](https://github.com/imgix/imgix-python/pull/63))
- feat: introduce variable image output quality ([#65](https://github.com/imgix/imgix-python/pull/65))
- fix: remove ensure even ([#72](https://github.com/imgix/imgix-python/pull/72))
- feat: throw exceptions from validators ([#77](https://github.com/imgix/imgix-python/pull/77))
- fix: convert tol to float ([#75](https://github.com/imgix/imgix-python/pull/75))

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

- Fix Python 2/3 compatibility issues
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -41,7 +41,7 @@ To begin creating imgix URLs, import the imgix library and create a URL builder.
>>> from imgix import UrlBuilder
>>> ub = UrlBuilder("demo.imgix.net")
>>> ub.create_url("bridge.png", {'w': 100, 'h': 100})
'https://demo.imgix.net/bridge.png?h=100&ixlib=python-3.1.2&w=100'
'https://demo.imgix.net/bridge.png?h=100&ixlib=python-3.2.0&w=100'

```

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

```

Expand Down
2 changes: 1 addition & 1 deletion imgix/_version.py
@@ -1 +1 @@
__version__ = '3.1.2'
__version__ = '3.2.0'

0 comments on commit c569e17

Please sign in to comment.