diff --git a/.bumpversion.toml b/.bumpversion.toml index bbb618d..cb9d60f 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -3,7 +3,7 @@ commit = true tag = true tag_name = "v{new_version}" -current_version = "1.7.1" +current_version = "2.0.0" [[tool.bumpversion.files]] glob = "*.md" diff --git a/README.md b/README.md index 7146c1d..0ac850a 100644 --- a/README.md +++ b/README.md @@ -16,10 +16,10 @@ If using these example scripts, you'll need to run these commands in an environm ```cmd # pip -pip install git+https://github.com/AllenCell/tfe-data.git@v1.7.1 +pip install git+https://github.com/AllenCell/tfe-data.git@v2.0.0 # requirements.txt -tfe_data @ git+https://github.com/AllenCell/tfe-data.git@v1.7.1 +tfe_data @ git+https://github.com/AllenCell/tfe-data.git@v2.0.0 ``` To install a different version, replace the end of the URL with a specific version or branch, like `@vX.X.X` or `@{branch-name}`. diff --git a/documentation/DATA_FORMAT.md b/documentation/DATA_FORMAT.md index e490403..bedea02 100644 --- a/documentation/DATA_FORMAT.md +++ b/documentation/DATA_FORMAT.md @@ -1,6 +1,6 @@ # Timelapse Feature Explorer - Data Format -Last release: v1.7.1 +Last release: v2.0.0 **NOTE:** If you are looking to create a dataset, follow our [getting started guide (`GETTING_STARTED.ipynb`)](./getting_started_guide/GETTING_STARTED.ipynb), and see the [readme (`README.md`)](../README.md) for more details on how to install this package. diff --git a/documentation/getting_started_guide/requirements.txt b/documentation/getting_started_guide/requirements.txt index 350467d..7b4a7f5 100644 --- a/documentation/getting_started_guide/requirements.txt +++ b/documentation/getting_started_guide/requirements.txt @@ -1,2 +1,2 @@ pandas -tfe_data @ git+https://github.com/AllenCell/tfe-data.git@v1.7.1 +tfe_data @ git+https://github.com/AllenCell/tfe-data.git@v2.0.0 diff --git a/pyproject.toml b/pyproject.toml index 46f25b6..3b32e8e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ namespaces = false [project] name = "tfe_data" -version = "1.7.1" +version = "2.0.0" authors = [ {name = "", email = "danielt@alleninstitute.org"}, {name = "", email = "peyton.lee@alleninstitute.org"}, diff --git a/tfe_data/types.py b/tfe_data/types.py index 7711820..d8d685a 100644 --- a/tfe_data/types.py +++ b/tfe_data/types.py @@ -9,7 +9,7 @@ Json = Union[dict, str, int, float, bool, None] -CURRENT_VERSION = "v1.7.1" +CURRENT_VERSION = "v2.0.0" DEFAULT_COLLECTION_VERSION = "v1.0" DEFAULT_DATASET_VERSION = "v1.0" DATETIME_FORMAT = "%Y-%m-%dT%H:%M:%S.%fZ" @@ -211,7 +211,7 @@ class DatasetMetadata(DataClassJsonMixin): is rewritten. Starts at 0. """ _writer_version: Optional[str] = CURRENT_VERSION - """Version of the data writer utility scripts. Uses semantic versioning (e.g. v1.7.1)""" + """Version of the data writer utility scripts. Uses semantic versioning (e.g. v2.0.0)""" # Exclude these three fields from auto-encode/decode, because they need to be structured # together under the frameDims subfield and not as their own root-level fields. @@ -334,7 +334,7 @@ class CollectionMetadata(DataClassJsonMixin): is rewritten, starting at 0. """ _writer_version: Optional[str] = CURRENT_VERSION - """Version of the data writer utility scripts. Uses semantic versioning (e.g. v1.7.1)""" + """Version of the data writer utility scripts. Uses semantic versioning (e.g. v2.0.0)""" class CollectionDatasetEntry(TypedDict):