Skip to content

Commit 1ab3dbd

Browse files
authored
Bump to 1.0.0 (#43)
* bump dependancies, add py37 * changelog
1 parent 1760516 commit 1ab3dbd

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
8+
## [1.0.0] - 2018-08-17
9+
10+
### Changed
11+
12+
- Version number to advertise stable API
13+
714
## [0.1.9] - 2018-06-24
815

916
### Added

fs_s3fs/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.9"
1+
__version__ = "1.0.0"

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@
1616
'Programming Language :: Python :: 3.4',
1717
'Programming Language :: Python :: 3.5',
1818
'Programming Language :: Python :: 3.6',
19+
'Programming Language :: Python :: 3.7',
1920
'Topic :: System :: Filesystems',
2021
]
2122

2223
with open('README.rst', 'rt') as f:
2324
DESCRIPTION = f.read()
2425

2526
REQUIREMENTS = [
26-
"boto3~=1.4",
27-
"fs~=2.0.18",
27+
"boto3~=1.7",
28+
"fs~=2.1",
2829
"six~=1.10"
2930
]
3031

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ sitepackages = False
44

55
[testenv]
66
deps = nose
7-
boto3==1.4.0
8-
fs==2.0.12
7+
boto3==1.7.64
8+
fs==2.1.0
99

10+
passenv = *
1011
#changedir=.tox
1112
commands = nosetests fs_s3fs/tests -v \
1213
[]

0 commit comments

Comments
 (0)