plexus-python 0.4.2__tar.gz → 0.4.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. {plexus_python-0.4.2 → plexus_python-0.4.3}/CHANGELOG.md +6 -0
  2. {plexus_python-0.4.2 → plexus_python-0.4.3}/PKG-INFO +1 -1
  3. {plexus_python-0.4.2 → plexus_python-0.4.3}/plexus/__init__.py +1 -1
  4. {plexus_python-0.4.2 → plexus_python-0.4.3}/pyproject.toml +1 -1
  5. {plexus_python-0.4.2 → plexus_python-0.4.3}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
  6. {plexus_python-0.4.2 → plexus_python-0.4.3}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
  7. {plexus_python-0.4.2 → plexus_python-0.4.3}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  8. {plexus_python-0.4.2 → plexus_python-0.4.3}/.github/workflows/ci.yml +0 -0
  9. {plexus_python-0.4.2 → plexus_python-0.4.3}/.github/workflows/publish.yml +0 -0
  10. {plexus_python-0.4.2 → plexus_python-0.4.3}/.gitignore +0 -0
  11. {plexus_python-0.4.2 → plexus_python-0.4.3}/AGENTS.md +0 -0
  12. {plexus_python-0.4.2 → plexus_python-0.4.3}/API.md +0 -0
  13. {plexus_python-0.4.2 → plexus_python-0.4.3}/CODE_OF_CONDUCT.md +0 -0
  14. {plexus_python-0.4.2 → plexus_python-0.4.3}/CONTRIBUTING.md +0 -0
  15. {plexus_python-0.4.2 → plexus_python-0.4.3}/LICENSE +0 -0
  16. {plexus_python-0.4.2 → plexus_python-0.4.3}/README.md +0 -0
  17. {plexus_python-0.4.2 → plexus_python-0.4.3}/SECURITY.md +0 -0
  18. {plexus_python-0.4.2 → plexus_python-0.4.3}/examples/README.md +0 -0
  19. {plexus_python-0.4.2 → plexus_python-0.4.3}/examples/basic.py +0 -0
  20. {plexus_python-0.4.2 → plexus_python-0.4.3}/examples/can.py +0 -0
  21. {plexus_python-0.4.2 → plexus_python-0.4.3}/examples/i2c_bme280.py +0 -0
  22. {plexus_python-0.4.2 → plexus_python-0.4.3}/examples/mavlink.py +0 -0
  23. {plexus_python-0.4.2 → plexus_python-0.4.3}/examples/mqtt.py +0 -0
  24. {plexus_python-0.4.2 → plexus_python-0.4.3}/plexus/buffer.py +0 -0
  25. {plexus_python-0.4.2 → plexus_python-0.4.3}/plexus/cli.py +0 -0
  26. {plexus_python-0.4.2 → plexus_python-0.4.3}/plexus/client.py +0 -0
  27. {plexus_python-0.4.2 → plexus_python-0.4.3}/plexus/config.py +0 -0
  28. {plexus_python-0.4.2 → plexus_python-0.4.3}/plexus/ws.py +0 -0
  29. {plexus_python-0.4.2 → plexus_python-0.4.3}/scripts/plexus.service +0 -0
  30. {plexus_python-0.4.2 → plexus_python-0.4.3}/scripts/scan_buses.py +0 -0
  31. {plexus_python-0.4.2 → plexus_python-0.4.3}/scripts/setup.sh +0 -0
  32. {plexus_python-0.4.2 → plexus_python-0.4.3}/tests/test_basic.py +0 -0
  33. {plexus_python-0.4.2 → plexus_python-0.4.3}/tests/test_buffer.py +0 -0
  34. {plexus_python-0.4.2 → plexus_python-0.4.3}/tests/test_config.py +0 -0
  35. {plexus_python-0.4.2 → plexus_python-0.4.3}/tests/test_retry.py +0 -0
  36. {plexus_python-0.4.2 → plexus_python-0.4.3}/tests/test_ws.py +0 -0
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.4.3] - 2026-04-27 - Re-release of 0.4.2 with correct __version__
4
+
5
+ The 0.4.2 wheel shipped with `plexus.__version__ == "0.4.1"` because the
6
+ tag was cut before the `__init__.py` bump landed. 0.4.3 is the same code
7
+ with `__version__ = "0.4.3"`. 0.4.2 has been yanked.
8
+
3
9
  ## [0.4.2] - 2026-04-27 - CLI auth: branded success page + auto-redirect
4
10
 
5
11
  ### Changed
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plexus-python
3
- Version: 0.4.2
3
+ Version: 0.4.3
4
4
  Summary: Thin Python SDK for Plexus — send telemetry in one line
5
5
  Project-URL: Homepage, https://plexus.dev
6
6
  Project-URL: Documentation, https://docs.plexus.dev
@@ -10,5 +10,5 @@ Plexus — thin Python SDK for sending telemetry to the Plexus gateway.
10
10
  from plexus.client import Plexus
11
11
  from plexus.ws import WebSocketTransport
12
12
 
13
- __version__ = "0.4.1"
13
+ __version__ = "0.4.3"
14
14
  __all__ = ["Plexus", "WebSocketTransport"]
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "plexus-python"
7
- version = "0.4.2"
7
+ version = "0.4.3"
8
8
  description = "Thin Python SDK for Plexus — send telemetry in one line"
9
9
  readme = "README.md"
10
10
  license = "Apache-2.0"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes