Skip to content

Commit 490be26

Browse files
authored
🚑 Release 1.5.1 (#764)
## 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
1 parent bba59ba commit 490be26

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env:
66
REGISTRY: ghcr.io
77
IMAGE_NAME: TissueImageAnalytics/tiatoolbox
88
image: ghcr.io/tissueimageanalytics/tiatoolbox
9-
TOOLBOX_VER: 1.5.0
9+
TOOLBOX_VER: 1.5.1
1010

1111
jobs:
1212
build-and-push-image:

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ authors:
4444
given-names: "Shan E Ahmed"
4545
orcid: "https://orcid.org/0000-0002-1097-1738"
4646
title: "TIAToolbox as an end-to-end library for advanced tissue image analytics"
47-
version: 1.5.0 # TIAToolbox version
47+
version: 1.5.1 # TIAToolbox version
4848
doi: 10.5281/zenodo.5802442
4949
date-released: 2022-10-20
5050
url: "https://github.com/TissueImageAnalytics/tiatoolbox"

HISTORY.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# History
22

3+
## 1.5.1 (2023-12-16)
4+
5+
### Development related changes
6+
7+
- Specifies compatible Python versions
8+
- Fixes `tiatoolbox-feedstock` build for conda-forge release #763
9+
10+
**Full Changelog:** https://github.com/TissueImageAnalytics/tiatoolbox/compare/v1.5.0...v1.5.1
11+
312
## 1.5.0 (2023-12-15)
413

514
### Major Updates and Feature Improvements

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
[tool.poetry]
4949
name = "TIA Centre"
50-
version = "1.5.0"
50+
version = "1.5.1"
5151
description = "test"
5252
authors = ["TIA Centre <tialab@dcs.warwick.ac.uk>"]
5353

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
setup(
3535
author="TIA Centre",
3636
author_email="tia@dcs.warwick.ac.uk",
37-
python_requires=">=3.8",
37+
python_requires=">=3.8, <3.12",
3838
classifiers=[
3939
"Development Status :: 2 - Pre-Alpha",
4040
"Intended Audience :: Developers",
@@ -63,6 +63,6 @@
6363
test_suite="tests",
6464
tests_require=test_requirements,
6565
url="https://github.com/TissueImageAnalytics/tiatoolbox",
66-
version="1.5.0",
66+
version="1.5.1",
6767
zip_safe=False,
6868
)

tiatoolbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
__author__ = """TIA Centre"""
2222
__email__ = "tialab@dcs.warwick.ac.uk"
23-
__version__ = "1.5.0"
23+
__version__ = "1.5.1"
2424

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

0 commit comments

Comments
 (0)