influxdata-plugin-utils 0.3.0__tar.gz → 0.3.1__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.
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.3.1] - 2026-08-03
11
+
12
+ ### Changed
13
+
14
+ - No functional changes. Released to exercise the tag-triggered release
15
+ automation added in
16
+ [#137](https://github.com/influxdata/influxdb3_plugins/pull/137), which
17
+ builds release notes from this file and publishes a GitHub release
18
+ alongside the PyPI upload.
19
+
10
20
  ## [0.3.0] - 2026-07-31
11
21
 
12
22
  ### Security
@@ -57,7 +67,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
57
67
  - `write` — `build_line`, `build_line_typed`, `add_field_with_type`,
58
68
  `write_data` (batching + retry), `BatchLines`.
59
69
 
60
- [Unreleased]: https://github.com/influxdata/influxdb3_plugins/compare/utils-v0.3.0...HEAD
70
+ [Unreleased]: https://github.com/influxdata/influxdb3_plugins/compare/utils-v0.3.1...HEAD
71
+ [0.3.1]: https://github.com/influxdata/influxdb3_plugins/compare/utils-v0.3.0...utils-v0.3.1
61
72
  [0.3.0]: https://github.com/influxdata/influxdb3_plugins/compare/utils-v0.2.0...utils-v0.3.0
62
73
  [0.2.0]: https://github.com/influxdata/influxdb3_plugins/compare/utils-v0.1.0...utils-v0.2.0
63
74
  [0.1.0]: https://github.com/influxdata/influxdb3_plugins/releases/tag/utils-v0.1.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: influxdata-plugin-utils
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Shared helpers for InfluxDB 3 plugins.
5
5
  Project-URL: Homepage, https://github.com/influxdata/influxdb3_plugins
6
6
  Project-URL: Repository, https://github.com/influxdata/influxdb3_plugins
@@ -8,7 +8,7 @@ Modules:
8
8
  write - LineBuilder builders and resilient write_data
9
9
  """
10
10
 
11
- __version__ = "0.3.0"
11
+ __version__ = "0.3.1"
12
12
 
13
13
  from . import cache, config, introspection, parsing, write
14
14
  from .cache import cached