Skip to content

Commit be8728c

Browse files
authored
Merge pull request #128 from us-irs/prep-v0.31.0
prepare v0.31.0
2 parents b8cc5ab + 6c7c690 commit be8728c

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88

99
# [unreleased]
1010

11+
# [v0.31.0] 2025-09-10
12+
1113
## Added
1214

1315
- Added back PUS-A support for both TCs and TMs
@@ -641,7 +643,8 @@ Refactored `logging` module usage to be more pythonic.
641643
- Applied formatting with the `black` Python formatter
642644
- Small tweaks to the NOTICE file
643645

644-
[unreleased]: https://github.com/us-irs/spacepackets-py/compare/v0.30.0...HEAD
646+
[unreleased]: https://github.com/us-irs/spacepackets-py/compare/v0.31.0...HEAD
647+
[v0.31.0]: https://github.com/us-irs/spacepackets-py/compare/v0.30.1...v0.31.0
645648
[v0.30.1]: https://github.com/us-irs/spacepackets-py/compare/v0.30.0...v0.30.1
646649
[v0.30.0]: https://github.com/us-irs/spacepackets-py/compare/v0.29.0...v0.30.0
647650
[v0.29.0]: https://github.com/us-irs/spacepackets-py/compare/v0.28.0...v0.29.0

justfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Run with `just all`
2+
all: fmt check test
3+
4+
fmt:
5+
ruff format .
6+
7+
check:
8+
ruff check .
9+
10+
test:
11+
pytest .

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "spacepackets"
77
description = "Various CCSDS and ECSS packet implementations"
88
readme = "README.md"
9-
version = "0.30.1"
9+
version = "0.31.0"
1010
requires-python = ">=3.9"
1111
license = {text = "Apache-2.0"}
1212
authors = [

0 commit comments

Comments
 (0)