Skip to content

Commit

Permalink
🚑 Release 1.5.1 (#764)
Browse files Browse the repository at this point in the history
## 1.5.1 (2023-12-16)

### Development related changes

- Specifies compatible Python versions
  - Fixes `tiatoolbox-feedstock` build for conda-forge release #763

**Full Changelog:** v1.5.0...v1.5.1
  • Loading branch information
shaneahmed committed Dec 16, 2023
1 parent bba59ba commit 490be26
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
REGISTRY: ghcr.io
IMAGE_NAME: TissueImageAnalytics/tiatoolbox
image: ghcr.io/tissueimageanalytics/tiatoolbox
TOOLBOX_VER: 1.5.0
TOOLBOX_VER: 1.5.1

jobs:
build-and-push-image:
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ authors:
given-names: "Shan E Ahmed"
orcid: "https://orcid.org/0000-0002-1097-1738"
title: "TIAToolbox as an end-to-end library for advanced tissue image analytics"
version: 1.5.0 # TIAToolbox version
version: 1.5.1 # TIAToolbox version
doi: 10.5281/zenodo.5802442
date-released: 2022-10-20
url: "https://github.com/TissueImageAnalytics/tiatoolbox"
Expand Down
9 changes: 9 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# History

## 1.5.1 (2023-12-16)

### Development related changes

- Specifies compatible Python versions
- Fixes `tiatoolbox-feedstock` build for conda-forge release #763

**Full Changelog:** https://github.com/TissueImageAnalytics/tiatoolbox/compare/v1.5.0...v1.5.1

## 1.5.0 (2023-12-15)

### Major Updates and Feature Improvements
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

[tool.poetry]
name = "TIA Centre"
version = "1.5.0"
version = "1.5.1"
description = "test"
authors = ["TIA Centre <tialab@dcs.warwick.ac.uk>"]

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
setup(
author="TIA Centre",
author_email="tia@dcs.warwick.ac.uk",
python_requires=">=3.8",
python_requires=">=3.8, <3.12",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
Expand Down Expand Up @@ -63,6 +63,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/TissueImageAnalytics/tiatoolbox",
version="1.5.0",
version="1.5.1",
zip_safe=False,
)
2 changes: 1 addition & 1 deletion tiatoolbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

__author__ = """TIA Centre"""
__email__ = "tialab@dcs.warwick.ac.uk"
__version__ = "1.5.0"
__version__ = "1.5.1"

# This will set the tiatoolbox external data
# default to be the user home folder, should work on both Window and Unix/Linux
Expand Down

0 comments on commit 490be26

Please sign in to comment.