Skip to content

Commit a9198b6

Browse files
committed
Update to v0.2.1
1 parent 84a5959 commit a9198b6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "quickstruct"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "A small library to ease the creation, usage, serialization and deserialization of C structs."
55
authors = ["Binyamin Y Cohen <binyamincohen555@gmail.com>"]
66
repository = "https://github.com/xpodev/quickstruct"

quickstruct/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from .quickstruct import *
33
from .struct_builder import StructFlags
44

5-
__version__ = '0.2.0'
5+
__version__ = '0.2.1'
66

77

88
__all__ = [

tests/test_quickstruct.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class PackedStruct8(DataStruct, flags=StructFlags.Align8Bytes):
6161

6262

6363
def test_version():
64-
assert __version__ == '0.2.0'
64+
assert __version__ == '0.2.1'
6565

6666

6767
def test_struct_data():

0 commit comments

Comments
 (0)