diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bc3ac4..bb2ff54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). + +## [1.0.0] - 2018-08-17 + +### Changed + +- Version number to advertise stable API + ## [0.1.9] - 2018-06-24 ### Added diff --git a/fs_s3fs/_version.py b/fs_s3fs/_version.py index c11f861..5becc17 100644 --- a/fs_s3fs/_version.py +++ b/fs_s3fs/_version.py @@ -1 +1 @@ -__version__ = "0.1.9" +__version__ = "1.0.0" diff --git a/setup.py b/setup.py index 61fc08f..33e9bd0 100644 --- a/setup.py +++ b/setup.py @@ -16,6 +16,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Topic :: System :: Filesystems', ] @@ -23,8 +24,8 @@ DESCRIPTION = f.read() REQUIREMENTS = [ - "boto3~=1.4", - "fs~=2.0.18", + "boto3~=1.7", + "fs~=2.1", "six~=1.10" ] diff --git a/tox.ini b/tox.ini index 3dbf068..d7509c4 100644 --- a/tox.ini +++ b/tox.ini @@ -4,9 +4,10 @@ sitepackages = False [testenv] deps = nose - boto3==1.4.0 - fs==2.0.12 + boto3==1.7.64 + fs==2.1.0 +passenv = * #changedir=.tox commands = nosetests fs_s3fs/tests -v \ []