From 39000ac28eb250d27f63ad943d95525f9fd8447f Mon Sep 17 00:00:00 2001 From: Andrey Nikiforov Date: Thu, 25 Jul 2024 21:35:44 +0000 Subject: [PATCH] bump 1.23.0 --- CHANGELOG.md | 2 ++ CONTRIBUTING.md | 4 ++-- README.md | 2 +- binary_dist/pyproject.toml | 2 +- docs/conf.py | 4 ++-- docs/install.md | 12 ++++++------ pyproject.toml | 2 +- scripts/publish_pypi | 2 +- 8 files changed, 16 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98bbf222b..f7a7767e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 1.23.0 (2024-07-25) + - feature: update webui and allow to cancel and resume sync - deprecate linux 386 and arm v6 support - add linux musl builds diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d711e9555..c7dce2d49 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -145,7 +145,7 @@ Note: that the step expects executables to be already prepared by previous steps Building NPM packages (with single executables; platform-specific): ``` sh -scripts/build_npm 1.22.0 +scripts/build_npm 1.23.0 ``` Note: that the step expects executables to be already prepared by previous steps @@ -209,4 +209,4 @@ We have GitHub actions taking care for building, testing, and releasing software - Update CHANGELOG.md with release changes if they were not added with commits - Update CHANGELOG.md with date of the release - Commit & push changes (either directly or through pull requests) -- Add version tag to head (`git tag v1.22.0`) and push it to master (`git push origin v1.22.0`) -- there seems to be no way to do that in UI +- Add version tag to head (`git tag v1.23.0`) and push it to master (`git push origin v1.23.0`) -- there seems to be no way to do that in UI diff --git a/README.md b/README.md index 5020ac8a0..dd9f41d8f 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ We aim to release new versions once a week (Friday), if there is something worth ## Install and Run There are three ways to run `icloudpd`: -1. Download executable for your platform from the GitHub [Release](https://github.com/icloud-photos-downloader/icloud_photos_downloader/releases/tag/v1.22.0) and run it +1. Download executable for your platform from the GitHub [Release](https://github.com/icloud-photos-downloader/icloud_photos_downloader/releases/tag/v1.23.0) and run it 1. Use package manager to install, update, and, in some cases, run ([Docker](https://icloud-photos-downloader.github.io/icloud_photos_downloader/install.html#docker), [PyPI](https://icloud-photos-downloader.github.io/icloud_photos_downloader/install.html#pypi), [AUR](https://icloud-photos-downloader.github.io/icloud_photos_downloader/install.html#aur), [npm](https://icloud-photos-downloader.github.io/icloud_photos_downloader/install.html#npm)) 1. Build and run from the source diff --git a/binary_dist/pyproject.toml b/binary_dist/pyproject.toml index cba8e44a3..0818ba548 100644 --- a/binary_dist/pyproject.toml +++ b/binary_dist/pyproject.toml @@ -6,7 +6,7 @@ requires = [ build-backend = "setuptools.build_meta" [project] -version="1.22.0" +version="1.23.0" name = "icloudpd" description = "icloudpd is a command-line tool to download photos and videos from iCloud." readme = "README_PYPI.md" diff --git a/docs/conf.py b/docs/conf.py index accfde99a..e665b708d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = "icloudpd" copyright = "2024, Contributors" author = "Contributors" -release = "1.22.0" +release = "1.23.0" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration @@ -19,7 +19,7 @@ templates_path = ["_templates"] exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] -html_title = "icloudpd 1.22.0" +html_title = "icloudpd 1.23.0" language = "en" # language = 'Python' diff --git a/docs/install.md b/docs/install.md index eb52de070..818b15bac 100644 --- a/docs/install.md +++ b/docs/install.md @@ -1,7 +1,7 @@ # Install and Run There are three ways to run `icloudpd`: -1. Download executable for your platform from the GitHub [Release](https://github.com/icloud-photos-downloader/icloud_photos_downloader/releases/tag/v1.22.0) and run it +1. Download executable for your platform from the GitHub [Release](https://github.com/icloud-photos-downloader/icloud_photos_downloader/releases/tag/v1.23.0) and run it 1. Use package manager to install, update, and, in some cases, run ([Docker](#docker), [PyPI](#pypi), [AUR](#aur), [npm](#npm)) 1. Build and run from the source @@ -102,13 +102,13 @@ npx --yes icloudpd --directory /data --username my@email.address --watch-with-in Here are the steps to make it working: - download binary from GitHub [Releases](https://github.com/icloud-photos-downloader/icloud_photos_downloader/releases) into desired local folder -- add executable flag by running `chmod +x icloudpd-1.22.0-macos-amd64` -- start it from the terminal: `icloudpd-1.22.0-macos-amd64` +- add executable flag by running `chmod +x icloudpd-1.23.0-macos-amd64` +- start it from the terminal: `icloudpd-1.23.0-macos-amd64` - Apple will tell you that it cannot check for malicious software and refuse to run the app; click "Ok" -- Open "System Settings"/"Privacy & Security" and find `icloudpd-1.22.0-macos-amd64` as blocked app; Click "Allow" -- Start `icloudpd-1.22.0-macos-amd64` from the terminal again +- Open "System Settings"/"Privacy & Security" and find `icloudpd-1.23.0-macos-amd64` as blocked app; Click "Allow" +- Start `icloudpd-1.23.0-macos-amd64` from the terminal again - Apple will show another warning; click "Open" -- After that you can run `icloudpd-1.22.0-macos-amd64 --help` or any other supported command/option +- After that you can run `icloudpd-1.23.0-macos-amd64 --help` or any other supported command/option ## Error on the First Run diff --git a/pyproject.toml b/pyproject.toml index 9cf0c5246..d56aa7f52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ requires = [ build-backend = "setuptools.build_meta" [project] -version="1.22.0" +version="1.23.0" name = "icloudpd" description = "icloudpd is a command-line tool to download photos and videos from iCloud." readme = "README_PYPI.md" diff --git a/scripts/publish_pypi b/scripts/publish_pypi index 3db26a974..d285ac829 100755 --- a/scripts/publish_pypi +++ b/scripts/publish_pypi @@ -11,4 +11,4 @@ set -euo pipefail # cleint use: pip install --index http://192.168.1.20:4880 --trusted-host 192.168.1.20 icloudpd # linux -twine upload --repository-url $1 --non-interactive -u bogus -p bogus dist/icloudpd-1.22.0-py2.py3-none-manylinux*.whl dist/icloudpd-1.22.0-py2.py3-none-macos*.whl dist/icloudpd-1.22.0-py2.py3-none-win*.whl dist/icloudpd-1.22.0-py3-none-any.whl +twine upload --repository-url $1 --non-interactive -u bogus -p bogus dist/icloudpd-1.23.0-py2.py3-none-manylinux*.whl dist/icloudpd-1.23.0-py2.py3-none-macos*.whl dist/icloudpd-1.23.0-py2.py3-none-win*.whl dist/icloudpd-1.23.0-py3-none-any.whl