Skip to content

Commit 5643bad

Browse files
authored
Py.typed (#218)
* added py.typed files * version bump
1 parent a71370d commit 5643bad

File tree

5 files changed

+18
-1
lines changed

5 files changed

+18
-1
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ 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+
## [2.1.1] - 2018-10-03
9+
10+
### Added
11+
12+
- Added PEP 561 py.typed files
13+
- Use sendfile for faster copies @althonos
14+
- Atomic exclusive mode in Py2.7 @sqwishy
15+
16+
### Fixed
17+
18+
- Fixed lstat @kamomil
19+
720
## [2.1.0] - 2018-08-12
821

922
### Added

fs/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version, used in module and setup.py.
22
"""
3-
__version__ = "2.1.0"
3+
__version__ = "2.1.1"

fs/opener/py.typed

Whitespace-only changes.

fs/py.typed

Whitespace-only changes.

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@
5858
license="MIT",
5959
name='fs',
6060
packages=find_packages(exclude=("tests",)),
61+
package_data = {
62+
'fs': ['py.typed'],
63+
},
64+
zip_safe=False,
6165
platforms=['any'],
6266
test_suite="nose.collector",
6367
tests_require=['appdirs', 'mock', 'pytz', 'pyftpdlib'],

0 commit comments

Comments
 (0)