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
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
run: |
pyinstaller --noconfirm --clean --onefile --name dataplicity \
--target-architecture "${{ matrix.macos_arch }}" \
--exclude-module websockets.speedups \
--workpath pyinstaller-build --distpath pyinstaller-dist \
dataplicity_cli/__main__.py

Expand Down
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.5"
__version__ = "0.1.6"
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.5"
version = "0.1.6"
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.5")
self.assertEqual(result.output.strip(), "dataplicity-cli 0.1.6")

def test_auth_required_message_snapshot_json(self) -> None:
with tempfile.TemporaryDirectory() as temp_dir:
Expand Down
Loading