Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}`.
Expand Down
2 changes: 1 addition & 1 deletion documentation/DATA_FORMAT.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion documentation/getting_started_guide/requirements.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down
6 changes: 3 additions & 3 deletions tfe_data/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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):
Expand Down
Loading