Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion dataplicity_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__all__ = ["__version__"]

__version__ = "0.1.4"
__version__ = "0.1.5"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli_ux_snapshots.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading