Skip to content

Commit 76c7276

Browse files
bump v1.14.2 (#654)
1 parent e5dd738 commit 76c7276

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## 1.14.2 (2023-07-03)
6+
57
- fix: finite retry on unhandled errors during photo iteration [#642](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/642)
68
- fix: retry on internal error during deletion [#615](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/615)
79

EXPERIMENTAL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ Legacy command (compatible with prior versions):
3434

3535
`docker run -it --rm icloudpd:icloudpd icloud --help`
3636

37-
`icloudpd-1.14.1-windows-amd64 --help`
37+
`icloudpd-1.14.2-windows-amd64 --help`
3838

3939
Help:
4040

4141
`docker run -it --rm icloudpd:icloudpd`
4242

43-
`icloudpd-ex-1.14.1-windows-amd64 --help`
43+
`icloudpd-ex-1.14.2-windows-amd64 --help`
4444

4545
Example:
4646

4747
`docker run -it --rm icloudpd:icloudpd copy [email protected] /path/to/{album}/{date_created:%Y/%Y-%m}`
4848

49-
`icloudpd-ex-1.14.1-windows-amd64 copy [email protected] /path/to/{album}/{date_created:%Y/%Y-%m}`
49+
`icloudpd-ex-1.14.2-windows-amd64 copy [email protected] /path/to/{album}/{date_created:%Y/%Y-%m}`
5050

FAQ.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ iOS 16 feature to share libraries between accounts is [not supported](https://gi
5959

6060
Here are the steps to make it working:
6161
- download binary from Github [Releases](https://github.com/icloud-photos-downloader/icloud_photos_downloader/releases) into desired local folder
62-
- add executable flag by running `chmod +x icloudpd-1.14.1-macos-amd64`
63-
- start it from the terminal: `icloudpd-1.14.1-macos-amd64`
62+
- add executable flag by running `chmod +x icloudpd-1.14.2-macos-amd64`
63+
- start it from the terminal: `icloudpd-1.14.2-macos-amd64`
6464
- Apple will tell you that it cannot check for malicous software and refuse to run the app; click "Ok"
65-
- Open "System Settings"/"Privacy & Security" and find `icloudpd-1.14.1-macos-amd64` as blocked app; Click "Allow"
66-
- Start `icloudpd-1.14.1-macos-amd64` from the terminal again
65+
- Open "System Settings"/"Privacy & Security" and find `icloudpd-1.14.2-macos-amd64` as blocked app; Click "Allow"
66+
- Start `icloudpd-1.14.2-macos-amd64` from the terminal again
6767
- Apple will show another warning; click "Open"
68-
- After that you can run `icloudpd-1.14.1-macos-amd64 icloudpd --help` or any other supported command/option
68+
- After that you can run `icloudpd-1.14.2-macos-amd64 icloudpd --help` or any other supported command/option

icloudpd/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@
215215
type=click.IntRange(1),
216216
)
217217
# a hacky way to get proper version because automatic detection does not work for some reason
218-
@click.version_option(version="1.14.1")
218+
@click.version_option(version="1.14.2")
219219
# pylint: disable-msg=too-many-arguments,too-many-statements
220220
# pylint: disable-msg=too-many-branches,too-many-locals
221221
def main(

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="icloudpd",
13-
version="1.14.1",
13+
version="1.14.2",
1414
url="https://github.com/icloud-photos-downloader/icloud_photos_downloader",
1515
description=(
1616
"icloudpd is a command-line tool to download photos and videos from iCloud."

0 commit comments

Comments
 (0)