Skip to content

Commit

Permalink
release: v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lnielsen committed Oct 20, 2021
1 parent e0f635b commit d1fb4d2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@
Changes
=======

Version 1.3.0 (released 2021-10-18)

- Bumped minimum PyFilesystem dependency to v2. Note that, setuptools v58+ have
dropped support for use2to3, thus PyFilesystem v0.5.5 no longer installs on
Python 3 when using setuptools v58 or greater.

Version 1.2.0 (released 2020-05-14)

- Adds optional file streaming using a reverse proxy (e.g. NGINX).
Expand Down
2 changes: 1 addition & 1 deletion invenio_files_rest/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
and parsed by ``setup.py``.
"""

__version__ = '1.2.0'
__version__ = '1.3.0'
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
'sphinxcontrib-httpdomain>=1.4.0',
],
'postgresql': [
'invenio-db[postgresql]>=1.0.0',
'invenio-db[postgresql]>=1.0.9',
],
'mysql': [
'invenio-db[mysql]>=1.0.0',
'invenio-db[mysql]>=1.0.9',
],
'sqlite': [
'invenio-db>=1.0.0',
'invenio-db>=1.0.9',
],
'tests': tests_require,
}
Expand All @@ -54,14 +54,14 @@
'click-default-group>=1.2.2,<2.0.0',
'Flask-Login>=0.3.2,<0.5.0',
'Flask-WTF>=0.14.3',
'invenio-base>=1.2.2',
'invenio-accounts>=1.2.1',
'fs>=2.0,<3.0',
'invenio-celery>=1.2.0',
'invenio-rest[cors]>=1.2.0',
'fs>=2.0.10,<3.0',
'invenio-accounts>=1.4.8',
'invenio-base>=1.2.5',
'invenio-celery>=1.2.3',
'invenio-rest[cors]>=1.2.4',
'simplejson>=3.0.0',
'WTForms>=2.0',
'SQLAlchemy-Utils>=0.33.1,<0.36',
'WTForms>=2.0',
]

setup_requires = [
Expand Down

0 comments on commit d1fb4d2

Please sign in to comment.