From d1be88261942bae4b10580f1cd8cf16a1ec292a4 Mon Sep 17 00:00:00 2001 From: jtyoung84 <104453205+jtyoung84@users.noreply.github.com> Date: Fri, 28 Jun 2024 16:18:28 -0700 Subject: [PATCH] fix: corrects link in README (#125) * fix: corrects link in README --- README.md | 2 +- src/aind_data_transfer_service/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index daa07cd..8fca72a 100644 --- a/README.md +++ b/README.md @@ -6,4 +6,4 @@ This service can be used to upload data stored in a VAST drive. It uses FastAPI to upload a job submission csv file that will be used to trigger a data transfer job in an on-prem HPC. Based on the information provided in the file, the data upload process fetches the appropriate metadata and starts the upload process. -More information can be found at [http://aind-data-transfer-service.readthedocs.io](readthedocs). +More information can be found at [readthedocs](https://aind-data-transfer-service.readthedocs.io). diff --git a/src/aind_data_transfer_service/__init__.py b/src/aind_data_transfer_service/__init__.py index a7f8953..3e9f96c 100644 --- a/src/aind_data_transfer_service/__init__.py +++ b/src/aind_data_transfer_service/__init__.py @@ -1,7 +1,7 @@ """Init package""" import os -__version__ = "1.0.0" +__version__ = "1.0.1" # Global constants OPEN_DATA_BUCKET_NAME = os.getenv("OPEN_DATA_BUCKET_NAME", "open")