Skip to content

Commit

Permalink
Merge pull request #14 from kfirgoldberg/kfir/release/version_0_2
Browse files Browse the repository at this point in the history
version 0.2.0 release
  • Loading branch information
kfirgoldberg authored Jun 18, 2024
2 parents 1b65e6f + 6df790e commit af04c5e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Version 0.2.0
- Type `AnyPathLikeType` was added, which can be used to init an `AnyPath` instance or in `copy` target
- `listdir` is now deprecated, replaced by `iterdir`, `rglob`, and `glob`
- `copy` not supports the case where the source is a file and target is a directory
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ export AWS_ACCESS_KEY_ID="your-key"
- [ ] Improve API

> Add support for file-to-dir in copy
> Add __open__ method for reading files, etc.
- [ ] Implement cloud-to-cloud ops more efficiently.

> For example, s3->azure can use AZCopy
> cache azure credentials to avoid repeated logins
- [ ] Improve logging and add verbose mode.

Expand Down
2 changes: 1 addition & 1 deletion anypathlib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1"
__version__ = "0.2.0"

from anypathlib.anypath import AnyPath
from anypathlib.path_handlers.path_types import PathType
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ azure-storage-blob>=12.14.0
azure-identity>=1.10.0
azure-mgmt-storage>=21.1.0
boto3>=1.34.23
loguru>=0.7.2
tqdm>=4.66.2
loguru
tqdm
click==8.1.7
pytest==8.2.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ def find_version(*file_paths: str) -> str:
"azure-identity>=1.15.0",
"azure-mgmt-storage>=21.1.0",
"boto3>=1.34.23",
"loguru>=0.7.2",
"tqdm>=4.66.2",
"loguru",
"tqdm",
'Click'
],
setup_requires=["pre-commit"],
Expand Down

0 comments on commit af04c5e

Please sign in to comment.