From 104506d2850ec99db4087fd2259e50f61996d041 Mon Sep 17 00:00:00 2001 From: Husam Soboh Date: Sun, 22 Mar 2026 15:31:18 +0200 Subject: [PATCH] chore: release 1.0.0 Production-ready release after comprehensive QA audit: - 85+ findings across 10 testing phases - 64 bugs fixed - 501 tests passing - Security hardened, UX polished, MCP integrated Co-Authored-By: Claude --- cloudhop.spec | 4 ++-- cloudhop/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cloudhop.spec b/cloudhop.spec index 899c4b2..5c212de 100644 --- a/cloudhop.spec +++ b/cloudhop.spec @@ -82,8 +82,8 @@ app = BUNDLE( info_plist={ 'CFBundleName': 'CloudHop', 'CFBundleDisplayName': 'CloudHop', - 'CFBundleVersion': '0.12.1', - 'CFBundleShortVersionString': '0.12.1', + 'CFBundleVersion': '1.0.0', + 'CFBundleShortVersionString': '1.0.0', 'CFBundleInfoDictionaryVersion': '6.0', 'NSHighResolutionCapable': True, 'LSMinimumSystemVersion': '10.15', diff --git a/cloudhop/__init__.py b/cloudhop/__init__.py index 4aa6575..5faa97e 100644 --- a/cloudhop/__init__.py +++ b/cloudhop/__init__.py @@ -1,3 +1,3 @@ """CloudHop - The easiest way to copy files between cloud storage services.""" -__version__ = "0.12.2" +__version__ = "1.0.0" diff --git a/pyproject.toml b/pyproject.toml index d7e886a..2c88653 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "cloudhop" -version = "0.12.2" +version = "1.0.0" description = "The easiest way to copy files between cloud storage services" readme = "README.md" license = {text = "MIT"}