From a563d664da0387097ce5f220b049e204efe00dce Mon Sep 17 00:00:00 2001 From: Elliot Mackenzie <6545046+barfle@users.noreply.github.com> Date: Mon, 13 Jul 2026 12:05:15 +1000 Subject: [PATCH] Prepare 0.1.5 CLI release --- README.md | 2 +- dataplicity_cli/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_cli_ux_snapshots.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cb4c640..b343d6b 100644 --- a/README.md +++ b/README.md @@ -210,4 +210,4 @@ dataplicity --install-completion zsh - You can also override tap settings per manual run using workflow inputs `tap_repository` and `formula_name`. - The `Update WinGet package` workflow publishes new `.msi` releases to WinGet using `Wildfoundry.DataplicityCLI`. - Configure a repository secret named `WINGET_TOKEN` (classic PAT with `public_repo`) and ensure your account has a fork of `microsoft/winget-pkgs`. -- WinGet automation updates existing manifests; if this package is not yet in WinGet, submit the first manifest manually, then subsequent releases are automated. +- WinGet automation updates existing manifests; if this package is not yet in WinGet, submit the first manifest for the current release, then subsequent releases are automated. diff --git a/dataplicity_cli/__init__.py b/dataplicity_cli/__init__.py index 93f8663..b9797df 100644 --- a/dataplicity_cli/__init__.py +++ b/dataplicity_cli/__init__.py @@ -1,3 +1,3 @@ __all__ = ["__version__"] -__version__ = "0.1.4" +__version__ = "0.1.5" diff --git a/pyproject.toml b/pyproject.toml index 8c5231b..eb01415 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dataplicity-cli" -version = "0.1.4" +version = "0.1.5" description = "Dataplicity command line interface" readme = "README.md" requires-python = ">=3.9" diff --git a/tests/test_cli_ux_snapshots.py b/tests/test_cli_ux_snapshots.py index 9e1f69d..d804d2b 100644 --- a/tests/test_cli_ux_snapshots.py +++ b/tests/test_cli_ux_snapshots.py @@ -136,7 +136,7 @@ def test_logging_path_map_help_snapshot(self) -> None: def test_version_flag_snapshot(self) -> None: result = self._invoke(["--version"]) self.assertEqual(result.exit_code, 0, msg=result.output) - self.assertEqual(result.output.strip(), "dataplicity-cli 0.1.4") + self.assertEqual(result.output.strip(), "dataplicity-cli 0.1.5") def test_auth_required_message_snapshot_json(self) -> None: with tempfile.TemporaryDirectory() as temp_dir: