Skip to content

Commit a7ff7b7

Browse files
committed
4.4.3 - bug fix for struct receiver
1 parent fea17c1 commit a7ff7b7

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
8585
- run: |
8686
mk python-release owner=libre-embedded \
87-
repo=ifgen version=4.4.2
87+
repo=ifgen version=4.4.3
8888
if: |
8989
matrix.python-version == '3.12'
9090
&& matrix.system == 'ubuntu-latest'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
=====================================
33
generator=datazen
44
version=3.2.3
5-
hash=10d6dbc1a49a7e9df18b9683c1d06dad
5+
hash=72371e50c5b57b71bee199190854d8db
66
=====================================
77
-->
88

9-
# ifgen ([4.4.2](https://pypi.org/project/ifgen/))
9+
# ifgen ([4.4.3](https://pypi.org/project/ifgen/))
1010

1111
[![python](https://img.shields.io/pypi/pyversions/ifgen.svg)](https://pypi.org/project/ifgen/)
1212
![Build Status](https://github.com/libre-embedded/ifgen/workflows/Python%20Package/badge.svg)

ifgen/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# =====================================
22
# generator=datazen
33
# version=3.2.3
4-
# hash=9355bd94a05b19e7f6e7da5286675040
4+
# hash=520db3f30066c96a8613f5361eca3772
55
# =====================================
66

77
"""
@@ -10,4 +10,4 @@
1010

1111
DESCRIPTION = "An interface generator for distributed computing."
1212
PKG_NAME = "ifgen"
13-
VERSION = "4.4.2"
13+
VERSION = "4.4.3"

ifgen/plugins/struct_receiver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,4 +179,4 @@ def cpp_struct_receiver(task: GenerateTask) -> None:
179179
writer.c_comment("Continue if more bytes remain.")
180180
writer.write("if (len)")
181181
with writer.scope():
182-
writer.write("handle_message(data, len);")
182+
writer.write("handle_message<endianness>(data, len);")

local/variables/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
major: 4
33
minor: 4
4-
patch: 2
4+
patch: 3
55
entry: ig

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__"
44

55
[project]
66
name = "ifgen"
7-
version = "4.4.2"
7+
version = "4.4.3"
88
description = "An interface generator for distributed computing."
99
readme = "README.md"
1010
requires-python = ">=3.12"

0 commit comments

Comments
 (0)