Skip to content

Commit 2212389

Browse files
committed
version 4.0
1 parent 2ebb795 commit 2212389

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

changelog.txt

+12
Original file line numberDiff line numberDiff line change
@@ -163,3 +163,15 @@
163163
### Fix
164164

165165
- Fix padding tests on 32bit architectures
166+
167+
### 4.0
168+
169+
2022-11-01
170+
171+
### Added
172+
173+
- Add support for nameless inline struct
174+
175+
### Improved
176+
177+
- Python 3.11 support

cstruct/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
__author__ = 'Andrea Bonomi <[email protected]>'
2626
__license__ = 'MIT'
27-
__version__ = '3.3'
27+
__version__ = '4.0'
2828
__date__ = '15 August 2013'
2929

3030
import struct

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ def readme():
2222
'Programming Language :: Python :: 3.8',
2323
'Programming Language :: Python :: 3.9',
2424
'Programming Language :: Python :: 3.10',
25+
'Programming Language :: Python :: 3.11',
2526
],
2627
keywords='struct',
2728
author='Andrea Bonomi',

0 commit comments

Comments
 (0)