File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 .
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66name = " spacepackets"
77description = " Various CCSDS and ECSS packet implementations"
88readme = " README.md"
9- version = " 0.30.1 "
9+ version = " 0.31.0 "
1010requires-python = " >=3.9"
1111license = {text = " Apache-2.0" }
1212authors = [
You can’t perform that action at this time.
0 commit comments