We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e093253 commit 9cf08deCopy full SHA for 9cf08de
changelog.txt
@@ -105,3 +105,17 @@
105
- refactoring
106
- Python 3.9 support
107
- Github workfows
108
+
109
+### 2.2
110
111
+2022-08-23
112
113
+### Fix
114
115
+- Fix empty MemCStruct size
116
117
+### Improved
118
119
+- Python 3.10 support
120
+- pytest
121
+- black code style
cstruct/__init__.py
@@ -26,11 +26,11 @@
26
27
__author__ = 'Andrea Bonomi <andrea.bonomi@gmail.com>'
28
__license__ = 'MIT'
29
-__version__ = '2.1'
+__version__ = '2.2'
30
__date__ = '15 August 2013'
31
32
import struct
33
-from typing import Any, Dict, Type
+from typing import Any, Type
34
from .base import (
35
LITTLE_ENDIAN,
36
BIG_ENDIAN,
0 commit comments