From 1439798d5ebf67485ec83007d9fa7147cf706d12 Mon Sep 17 00:00:00 2001 From: "Martindale, Nathan" Date: Wed, 29 Nov 2023 10:11:28 -0500 Subject: [PATCH] Bump version and changelog --- CHANGELOG.md | 8 ++++++++ icat/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f72fdf..774ce4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.7.2] - 2023-11-29 + +### Fixed +* Issue with items per page breaking AnchorList + + + + ## [0.7.1] - 2023-09-01 ### Fixed diff --git a/icat/__init__.py b/icat/__init__.py index 240621c..730950d 100644 --- a/icat/__init__.py +++ b/icat/__init__.py @@ -45,7 +45,7 @@ from icat.anchors import Anchor, DictionaryAnchor, TFIDFAnchor from icat.model import Model -__version__ = "0.7.1" +__version__ = "0.7.2" def initialize(offline: bool = False):