Skip to content

Commit

Permalink
prepare v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robamu committed Jan 17, 2025
1 parent 994c066 commit 12863f0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

# [unreleased]

# [v0.5.0] 2025-01-17

## Added

- Added `RestrictedFilestore` to limit the file access of the `NativeFilestore` to a specific
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sphinx-rtd-theme==2.0.0
sphinx-rtd-theme==3.0.2
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "cfdp-py"
description = "Library for high level CCSDS File Delivery Protocol (CFDP) components"
readme = "README.md"
version = "0.4.1"
version = "0.5.0"
requires-python = ">=3.9"
license = {text = "Apache-2.0"}
authors = [
Expand All @@ -27,7 +27,7 @@ classifiers = [
"Topic :: Scientific/Engineering"
]
dependencies = [
"spacepackets~=0.26.0",
"spacepackets>=0.26.0, <=0.27",
"crcmod~=1.7",
"deprecation~=2.1",
]
Expand Down
6 changes: 4 additions & 2 deletions src/cfdppy/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@

@dataclasses.dataclass
class PutRequest:
"""This is the base class modelling put request. You can create this class from the simplified
"""This is the base class modelling the CFDP put request.
You can create this class from the simplified
:py:class:`tmtccmd.config.defs.CfdpParams` class with the generic
:py:func:`tmtccmd.config.cfdp.generic_cfdp_params_to_put_request` API and/or all related
specific APIs.
specific APIs.
"""

destination_id: UnsignedByteField
Expand Down

0 comments on commit 12863f0

Please sign in to comment.