Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
polyvertex committed Apr 10, 2019
1 parent 18d5d16 commit 8bda51f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@ Change Log
==========


v0.4.0 (2019-04-10)
===================

* Added `fitdecode.FitDataMessage.has_field`
* `fitdecode.FitDataMessage.get_fields` is now a generator
* `fitdecode.FitDataMessage.get_values` is now a generator
* `fitdecode.DefaultDataProcessor` now converts ``hr.event_timestamp`` values
that were populated from ``hr.event_timestamp_12`` components to
`datetime.datetime` objects for convenience
* ``fitjson`` and ``fittxt`` utilities:
* Added support for input files with Unicode characters
* Still write output file even if an error occurred while parsing FIT file
* Fixed handling of some FIT fields that are both scale and components.
See https://github.com/dtcooper/python-fitparse/issues/84
* Improved support for malformed FIT files.
See https://github.com/dtcooper/python-fitparse/issues/62
* ``generate_profile`` utility slightly improved
* Added some unit tests
* Minor improvements and corrections


v0.3.0 (2018-07-27)
===================

Expand Down
4 changes: 2 additions & 2 deletions fitdecode/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# This code is licensed under the MIT License.
# See the LICENSE.txt file at the root of this project.

__version__ = '0.3.0'
version_info = (0, 3, 0)
__version__ = '0.4.0'
version_info = (0, 4, 0)

__title__ = 'fitdecode'
__fancy_title__ = 'fitdecode'
Expand Down

0 comments on commit 8bda51f

Please sign in to comment.