Skip to content

Commit

Permalink
v0.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jayqi authored Apr 7, 2022
1 parent 965254b commit ad40af1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# cloudpathlib Changelog

## v0.7.1 (2022-04-06)

- Fixed inadvertent inclusion of tests module in package. ([Issue #173](https://github.com/drivendataorg/cloudpathlib/issues/173), [PR #219](https://github.com/drivendataorg/cloudpathlib/pull/219))

## v0.7.0 (2022-02-16)

- Fixed `glob` and `rglob` functions by using pathlib's globbing logic rather than fnmatch. ([Issue #154](https://github.com/drivendataorg/cloudpathlib/issues/154))
Expand All @@ -8,7 +12,6 @@
- Changed `parents` return type from list to tuple, to better match pathlib's tuple-like `_PathParents` return type.
- Remove support for Python 3.6. [Issue #186](https://github.com/drivendataorg/cloudpathlib/issues/186)


## v0.6.5 (2022-01-25)

- Fixed error when "directories" created on AWS S3 were reported as files. ([Issue #148](https://github.com/drivendataorg/cloudpathlib/issues/148), [PR #190](https://github.com/drivendataorg/cloudpathlib/pull/190))
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def load_requirements(path: Path):
setup(
author="DrivenData",
author_email="[email protected]",
python_requires=">=3.6",
python_requires=">=3.7",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
Expand All @@ -60,5 +60,5 @@ def load_requirements(path: Path):
"Source Code": "https://github.com/drivendataorg/cloudpathlib",
},
url="https://github.com/drivendataorg/cloudpathlib",
version="0.7.0",
version="0.7.1",
)

0 comments on commit ad40af1

Please sign in to comment.