Skip to content

Releases: KronoSKoderS/CalPack

v2018.5.2

09 May 19:39
Compare
Choose a tag to compare
fixing pypi documentation

2018.5.0

09 May 18:22
0179494
Compare
Choose a tag to compare
Integration for Release 2018.5.0 (#87) (#88)

* updated travis-ci to only push to pypi from the python 3 build

* python version needs to be in quotations.

* fixing tags deployment

* updated test to properly grab size

* Ignoring pytest caches files.

* Added ability to get the `len` of a Packet.

* added test to verify proper inheritance of Packet class.

* working on updating the inheritance of Packet class

* fixed issue with inheritance.

* Inheritance (#86)

* added test to verify proper inheritance of Packet class.

* working on updating the inheritance of Packet class

* fixed issue with inheritance.

* fixed FlagField documentation.

* Updating to a new release version of <year>.<month>.<minor>

v0.1.3

28 Feb 05:50
e810c54
Compare
Choose a tag to compare

We've stomped out a few bugs, and added a few features as well:

  • Added the ability to define the endianess of the packet.
  • str and repr now produce valuable information about the packets and it's fields

We've also done some cleanup of the code as well.

v0.1.2

02 Dec 02:59
928a5b5
Compare
Choose a tag to compare

This fixes a lot of issues and adds new features so here we go:

  • Fixed access issues with the internal c_structure of the Packet class
  • Fixed issues with the ArrayField not properly configuring the internal c_structure
  • Cleaned up unittest tests
  • added the following fields: IntField8, IntField16, IntField32, IntField64, FloatField, DoubleField, LongDoubleField, BoolField, FlagField
  • Updated documentation! Check it out

v0.1.1

25 Nov 01:18
2df6931
Compare
Choose a tag to compare

Thanks for using CalPack! This release was dedicated to a few fixes and added integrations:

  • Updated codebase with pep8 and pylint suggested changes
  • Added testing integration into appveyor
  • Improved documentation! Check it out
  • a few other minor issues resolved

Version 0.1.0

23 Nov 11:03
3d442ec
Compare
Choose a tag to compare

This release is the first official release of CalPack. It enables all the basic features that I was hoping to accomplish including:

  • Ability to create packets using a easy to ready class definition
  • Ability to export/import to and from bytes string
  • Ability to create custom Fields
  • Builtin IntField to handle the basic field
  • Builtin fields ArrayField and PacketField to create arrays and encapsulated packets

v0.0.3

01 Oct 15:10
Compare
Choose a tag to compare

Enhancements

  • Added ability to create a multi-array'd field using the array_size keyword
  • Added ability to define a default value for a field in the packet definition
  • Added ability to define the field value in the packet object creation

v0.0.2

28 Sep 20:15
Compare
Choose a tag to compare

This release enable further interaction for the IntField and simple packet creation.