Skip to content

Commit 44eea21

Browse files
committed
prepare 0.9.2 release
Signed-off-by: Lance-Drane <Lance-Drane@users.noreply.github.com>
1 parent 70b9037 commit 44eea21

4 files changed

Lines changed: 14 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22

33
We follow [Common Changelog](https://common-changelog.org/) formatting for this document.
44

5-
## Unreleased
5+
## [0.9.2] - 2026-03-17
6+
7+
No API changes.
68

79
### Fixed
810

9-
- Made support for wildcards in the channel parameter of `ControlPlaneManager.add_subscription_channel()` consistent across protocols
11+
- Made support for wildcards in the channel parameter of `ControlPlaneManager.add_subscription_channel()` consistent across protocols ([commit](https://github.com/INTERSECT-SDK/intersect-python-common/commit/70b90373923e044f5e3059a22c48379a86f7fcc8)) (Lance Drane)
1012

1113
## [0.9.1] - 2026-02-25
1214

@@ -17,4 +19,5 @@ Initial reorganization of SDK packaging.
1719
- Added new argument to `ControlPlaneManager.add_subscription_channel()` which specifies a queue name to use.
1820
- Add `is_root` option to `ControlPlaneConfig` in preparation for Registry Service.
1921

22+
[0.9.2]: https://github.com/INTERSECT-SDK/intersect-python-common/releases/tag/0.9.2
2023
[0.9.1]: https://github.com/INTERSECT-SDK/intersect-python-common/releases/tag/0.9.1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ readme = "README.md"
1818
license = { text = "BSD-3-Clause" }
1919
requires-python = ">=3.10,<4.0"
2020
keywords = ["intersect"]
21-
version = "0.9.1"
21+
version = "0.9.2"
2222
classifiers = [
2323
"Programming Language :: Python :: 3",
2424
"Programming Language :: Python :: 3.10",

src/intersect_sdk_common/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
from .control_plane.definitions import MessageCallback
2222
from .core_definitions import IntersectDataHandler, IntersectMimeType
2323
from .data_plane.data_plane_manager import DataPlaneManager
24+
from .exceptions import IntersectApplicationError, IntersectError, IntersectSetupError
2425
from .version import __version__, intersect_sdk_version_info, intersect_sdk_version_string
2526

2627
__all__ = (
@@ -31,8 +32,11 @@
3132
'DataStoreConfig',
3233
'DataStoreConfigMap',
3334
'HierarchyConfig',
35+
'IntersectApplicationError',
3436
'IntersectDataHandler',
37+
'IntersectError',
3538
'IntersectMimeType',
39+
'IntersectSetupError',
3640
'MessageCallback',
3741
'__version__',
3842
'intersect_sdk_version_info',
@@ -52,6 +56,9 @@
5256
'IntersectDataHandler': '.core_definitions',
5357
'IntersectMimeType': '.core_definitions',
5458
'DataPlaneManager': '.data_plane.data_plane_manager',
59+
'IntersectApplicationError': '.exceptions',
60+
'IntersectError': '.exceptions',
61+
'IntersectSetupError': '.exceptions',
5562
'__version__': '.version',
5663
'intersect_sdk_version_info': '.version',
5764
'intersect_sdk_version_string': '.version',

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)