summarylogtreecommitdiffstats
path: root/changelog.txt
blob: a7a35c26afedf49e945ca061ed3e2ba519762266 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# python-cstruct changelog

## 1.0

2013-08-19

### Added

- initial version

## 1.2

2017-05-18

### Improved

- initialize all values to 0 by default
- new data types

### Added

- who.py example
- a changelog :)

## 1.3

2017-05-21

### Fix

- default value fix

## 1.4

2017-06-02

### Fix

- default value fix

## 1.5

2017-07-22

### Fix

- compatibiliy fix

## 1.6

2017-12-12

### Fix

- fixed size of 64-bit integers, they now have 64 bits, not 32

## 1.7

2018-03-14

### Improved

- add support for // comments

## 1.8

2018-10-30

### Improved

- add *_t types

### Fix

- fix Python 2.5 support in main module
- examples fix

## 1.9

2019-07-09

### Improved

- drop Python < 2.6 support

### Added

- flexible array parsing
- union initial support

## 2.0

2020-04-11

### Improved

- drop Python 2 support

## 2.1

2020-10-09

### Improved

- refactoring
- Python 3.9 support
- Github workfows

## 2.2

2022-08-23

### Fix

- Fix empty MemCStruct size

### Improved

- Python 3.10 support
- pytest
- black code style

## 2.3

2022-09-01

### Fix

- Fix compare with None

## 3.0

2022-09-05

### Added

- Flexible array support

## 3.1

2022-09-13

### Added

- Make CStruct/MemCStruct Pickle Friendly

## 3.2

2022-10-23

### Fix

- Fix padding tests on 32bit architectures

## 3.3

2022-10-24

### Added

- Add 32bit test environment

### Fix

- Fix padding tests on 32bit architectures

## 4.0

2022-11-01

### Added

- Add support for nameless inline struct

### Improved

- Python 3.11 support

## 5.0

2022-11-12

### Added

- Add support for enums
- Add support for multiple definition to cstruct.parse
- Add inspect method

### Improved

- Documentation and examples
- Restructure setup