Skip to content

Commit 40e082e

Browse files
committed
Register as typed
1 parent bba7480 commit 40e082e

7 files changed

Lines changed: 118 additions & 104 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.0
2+
current_version = 0.5.1
33
commit = False
44
allow_dirty = True
55

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ repos:
3535
- id: python-check-blanket-type-ignore
3636
- id: python-use-type-annotations
3737
- repo: https://github.com/astral-sh/ruff-pre-commit
38-
rev: v0.5.6
38+
rev: v0.5.7
3939
hooks:
4040
- id: ruff

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
# Changelog
22
Versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html) (`<major>`.`<minor>`.`<patch>`)
33

4+
## [0.5.1]
5+
### Added
6+
* Add `py.typed` marker to register library as typed for downstream type checking
7+
48
## [0.5.0]
59
### Changed
610
* #16 Complete reimplementation of CLI
711

812
### Added
913
* Add additional helpers to `pyflysight.config_utils` and `pyflysight.flysight_utils`
1014

11-
### Added
12-
13-
1415
## [v0.4.0]
1516
### Added
1617
* Add derived `total_accel` column to Flysight V2 IMU sensor dataframe, calculated as a vector sum of the `xyz` acceleration components

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# pyflysight
2-
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyflysight/0.5.0?logo=python&logoColor=FFD43B)](https://pypi.org/project/pyflysight/)
2+
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyflysight/0.5.1?logo=python&logoColor=FFD43B)](https://pypi.org/project/pyflysight/)
33
[![PyPI](https://img.shields.io/pypi/v/pyflysight?logo=Python&logoColor=FFD43B)](https://pypi.org/project/pyflysight/)
44
[![PyPI - License](https://img.shields.io/pypi/l/pyflysight?color=magenta)](https://github.com/sco1/pyflysight/blob/main/LICENSE)
55
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/sco1/pyflysight/main.svg)](https://results.pre-commit.ci/latest/github/sco1/pyflysight/main)

poetry.lock

Lines changed: 110 additions & 97 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyflysight/py.typed

Whitespace-only changes.

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 = "pyflysight"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Helper library for processing FlySight GPS flight logs."
55
authors = ["sco1 <sco1.git@gmail.com>"]
66

0 commit comments

Comments
 (0)