Skip to content

Commit

Permalink
Merge pull request #555 from byllyfish/bump_version
Browse files Browse the repository at this point in the history
Bump version.
  • Loading branch information
byllyfish authored May 23, 2024
2 parents 4d40b1e + 4428690 commit ead0c80
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Finsy Change Log

## 0.26.0

- Replace the `manager` property in the `Switch` class with `stash` and constrain the type to `dict[str, Any]`.
- Add the `stash` keyword argument to the `Switch.__init__` method.
- Remove the `configuration` property from the `SwitchOptions` class. (Use the Switch `stash` property instead.)
- The `control_task` property of the `Switch` class is now private (`_control_task`).
- Add the `pkg_info` accessor to `P4Schema`.
- The `Switch`, `SwitchOptions` and `Controller` classes are now `@final`; they are not intended to be subclassed.
- Update the `protoc` compiler to 1.65.0 and re-compile all protobuf files.
- Update protobuf files from upstream; the `v1.p4info.proto` file now includes the PlatformProperties field in PkgInfo.

## 0.25.0

- The `match_dict`, `match_str` and `action_str` formatting methods now require a P4Schema argument. Removed P4Schema's context manager API. (#499)
Expand Down
2 changes: 1 addition & 1 deletion finsy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.25.0"
__version__ = "0.26.0"

import sys

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[tool.poetry]
name = "finsy"
version = "0.25.0"
version = "0.26.0"
description = "P4Runtime Client Library"
license = "Apache-2.0"
authors = ["Bill Fisher <william.w.fisher@gmail.com>"]
Expand Down

0 comments on commit ead0c80

Please sign in to comment.