Skip to content

Releases: corriporai/runpandas

v0.6.0

28 Dec 19:40
e42c842
Compare
Choose a tag to compare

This is a major release from 0.5.2 and includes new features.

  • Added support of reading race event results (:issue:16)
  • Added support of fetching race results from an open-data internal race results repository (:issue:16)
  • Added special statistics methods for race results such as participants, winner, demographics summary, etc. (:issue:16)

v0.5.2

04 Aug 16:59
27c3793
Compare
Choose a tag to compare

This is a minor release from 0.5 and includes new features and improvements

  • Added StravaClient authentication handler for helping the authentication process (:pull:55)
  • Added docummentation with Strava Examples (:issue:63)
  • Fixed the test suites for Strava reading handlers and new tests for StravaClient helper class. (:issue:63)
  • improvements on linting and pre-commit process and remove Python 3.6 from the tests suite. (:issue:59)

v.0.5.1

20 Jul 16:58
794fc4d
Compare
Choose a tag to compare

This is a minor release from 0.5 and includes new features and improvements

  • Added support to reading JSON files from Nike Run Club social tracking app (:issue:20)
  • Added new docummentation for Nike Run Club Tracking files (:issue:20)

v0.5.0

15 Jul 18:31
8627f53
Compare
Choose a tag to compare

This is a major release from 0.4 and includes new features and improvements

  • Added support to a describe function that presents basic summaries with common running statistics (:issue:14)
  • Added support to MultiIndex Dataframe (session) combining a list of activities recorded ordered according to the timestamps. (:issue:15)
  • Added new docummentation for summary statistics (:issue:14)
  • Added new docummentation for sesion dataframes (:issue:15)

v0.4.1

29 May 01:09
52de344
Compare
Choose a tag to compare

This is a minor release from 0.4 and includes new features and improvements

  • Added support to compute HR training zones into activity (:issue:12)
  • Added support to computer time spent in each HR training zone from an activity (:issue:12)
  • Added new docummentations with a new heartrate jupyter notebook (:issue:12)
  • Changed from travis CI to Github actions to build testing (:issue:38)

v0.4.0

23 Apr 23:08
53647b5
Compare
Choose a tag to compare

This is a major release from 0.3 and includes new features and a number of bug fixes.

  • Added support to Vertical Altitude Speed (VAM) (:issue:12)
  • Added support to Gradient (Vertical Altitude Ratio)
  • Added support to ascent and descent altitudes computation. (:issue:12)
  • Added support to descent and ascent docummentation (:issue:12)
  • Added support to distance conversion to kilometers and miles. (:issue:12)
  • Added support to latitude and longitude conversion to radians. (:issue:12)
  • Support to pace computation. (:issue:12)
  • support to pace conversion min/km and min/mile. (:issue:12)
  • Support to speed to pace conversion method. (:issue:12)
  • Support to mean cadence computation. (:issue:12)
  • Added support to mean speed in m/s. (:issue:12)
  • Added support to mean cadence computation. (:issue:12)
  • Added support to mean pace computation. (:issue:12)
  • Added support to activities examples (:issue:13)
  • Added support to github actions to upload package to Pypi after release (:issue:38)

v0.3.0

13 Mar 22:00
e7572ec
Compare
Choose a tag to compare

This is a major release from 0.2 and includes new features and a number of bug fixes.

  • Added support to detect periods of inactivity in order to calculate the moving time (:issue:11)
  • Added testes for inactivity estimator for the activity. (:issue:11)
  • Added distance, elapsed_time and moving time properties for an activity and respective tests. (:issue:12)
  • Improvements on Docs (new reference APIs and examples) (:issue:11 and :issue:12)
  • Updated examples on README
  • Added badge Zenodo.org DOI to README
  • Fixed the timestamp parse format with fraction when reading GPX files (:issue:34)

v0.2.0

12 Jan 21:22
Compare
Choose a tag to compare

This is a major release from 0.1 and includes new features and a number of bug fixes.

  • Added support to fetch a single activity from an registered athlete from social network Strava. (#9 )
  • Added standalone script for getting the access token for the user strava
    activities. (#9)
  • Added badge for Pepy metrics (pepy.tech)
  • Added runpandas.read_dir method for iterate and read multiple tracking files located in a directory. (#10 )
  • Improvements on Docs (added new sections UserGuide, API Reference, Install Guide, Changelog) (#22 )
  • Added examples section to README (#22 )
  • Added badge CodeFactor.io and MyBinder.org. to README
  • Fixed setup.py find_packagesmethod that broke the readthedocs build procedure (#30 )

v0.1

21 Nov 15:12
1fddf9f
Compare
Choose a tag to compare

RunPandas 0.1 is the first release for our running activities package. It may have some hidden bugs, so the package is still experimental.

Runpandas can be installed with pip (pip install runpandas)

Improvements:

Initial architecture using the best practices: travis-ci, setup, coverage, readthedocs,pytest and folder structure (#1 #2)
Initial README (#3)
It supports the base architecture for Activity Data Frame (#4)
Reading module for tcx, fit, gpx tracking format files (#4)
suite of tests for reading the trackign format files (#4, #5 )
Added support to columns metadata registration (#7)
DOC: Added examples with overview jupyter notebook (#7)