Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
juansensio committed Aug 21, 2024
1 parent 35bc23f commit a8cc32d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions api/api/routers/datasets/create_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ def create(

@router.post(
"/version/{dataset_id}",
summary="Get the version of a dataset",
summary="Create a new version for a dataset",
responses=get_dataset_version_responses,
)
def version_dataset(
dataset_id: str = Path(..., description="The ID of the dataset"),
user: User = Depends(get_current_user),
):
"""
Get the version of a dataset.
Create a new version for a dataset.
"""
try:
version = create_dataset_version(user, dataset_id)
Expand Down
2 changes: 1 addition & 1 deletion eotdl/eotdl/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2024.08.05"
__version__ = "2024.08.21"
2 changes: 1 addition & 1 deletion eotdl/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "eotdl"
version = "2024.08.05"
version = "2024.08.21"
description = "Earth Observation Training Data Lab"
authors = ["EarthPulse <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit a8cc32d

Please sign in to comment.