Skip to content

Commit 9cf08de

Browse files
committed
version 2.2
1 parent e093253 commit 9cf08de

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

changelog.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,17 @@
105105
- refactoring
106106
- Python 3.9 support
107107
- 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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626

2727
__author__ = 'Andrea Bonomi <andrea.bonomi@gmail.com>'
2828
__license__ = 'MIT'
29-
__version__ = '2.1'
29+
__version__ = '2.2'
3030
__date__ = '15 August 2013'
3131

3232
import struct
33-
from typing import Any, Dict, Type
33+
from typing import Any, Type
3434
from .base import (
3535
LITTLE_ENDIAN,
3636
BIG_ENDIAN,

0 commit comments

Comments
 (0)