From 26590884ffbb8e3d64cf374740068945945372e9 Mon Sep 17 00:00:00 2001 From: Paul Traina Date: Wed, 17 Jul 2024 17:54:41 -0700 Subject: [PATCH] chore(main): release 1.5.1 --- CHANGELOG.md | 16 ++++++++++++++++ src/gpxtable/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f118dc..1db0ab7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [1.5.1](https://github.com/pleasantone/gpxtable/compare/v1.5.0...v1.5.1) (2024-07-18) + + +### Bug Fixes + +* change asserts to exceptions ([55be527](https://github.com/pleasantone/gpxtable/commit/55be52726e1fa9a5b8d184c37d129d4c601a26de)) +* **wsgi:** error handler ([f3cc839](https://github.com/pleasantone/gpxtable/commit/f3cc839abfe72f16fb0f0c13d9b768e77558c37d)) + + +### Documentation + +* Document point_types better ([44afc97](https://github.com/pleasantone/gpxtable/commit/44afc97af911b23079ee0fc64399bab499704ae3)) +* get module from local path ([90a663b](https://github.com/pleasantone/gpxtable/commit/90a663bbfd5d2185dd44dbc351f0a93c000f0241)) +* improve api documentation ([0cf8a74](https://github.com/pleasantone/gpxtable/commit/0cf8a74a23af25b075bd02804d080e51b430bfcb)) +* **wsgi:** Document the WSGI wrapper in README ([5c34f63](https://github.com/pleasantone/gpxtable/commit/5c34f63dbb8f362ee6f7b8903d6812de24163dd9)) + ## [1.5.0](https://github.com/pleasantone/gpxtable/compare/v1.4.0...v1.5.0) (2024-07-16) diff --git a/src/gpxtable/__init__.py b/src/gpxtable/__init__.py index 388a114..d88c8e6 100644 --- a/src/gpxtable/__init__.py +++ b/src/gpxtable/__init__.py @@ -2,7 +2,7 @@ gpxtable - Create a markdown template from a Garmin GPX file for route information """ -__version__ = "1.5.0" +__version__ = "1.5.1" __all__ = ["GPXTableCalculator"] __author__ = "Paul Traina"