Skip to content

Commit 80a85a5

Browse files
committed
Fix 0.1.4
1 parent 9c5dfb5 commit 80a85a5

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

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.1.3"
3+
version = "0.1.4"
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.1.3'
5+
__version__ = '0.1.4'
66

77

88
__all__ = [

tests/test_quickstruct.py

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

4848

4949
def test_version():
50-
assert __version__ == '0.1.3'
50+
assert __version__ == '0.1.4'
5151

5252

5353
def test_struct_data():

0 commit comments

Comments
 (0)