Skip to content

Commit 4689c48

Browse files
committed
Bump version and CHANGELOG
1 parent 06f19d7 commit 4689c48

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
8+
## [0.7.3] - 2024-06-21
9+
10+
### Fixed
11+
* Missing `<template>` tags in vue templates
12+
* Overly loose dependencies in setup.py, restricted ipywidgets and ipyvuetify to
13+
recent versions.
14+
15+
16+
17+
718
## [0.7.2] - 2023-11-29
819

920
### Fixed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
[![PyPI version](https://badge.fury.io/py/icat-iml.svg)](https://badge.fury.io/py/icat-iml)
1313
[![tests](https://github.com/ORNL/icat/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/ORNL/icat/actions/workflows/tests.yml)
1414
[![License](https://img.shields.io/pypi/l/curifactory)](https://github.com/ORNL/curifactory/blob/main/LICENSE)
15+
[![status](https://joss.theoj.org/papers/0528d60ff4f251069d15456fdb83bd0f/status.svg)](https://joss.theoj.org/papers/0528d60ff4f251069d15456fdb83bd0f)
1516

1617

1718

icat/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
from icat.anchors import Anchor, DictionaryAnchor, TFIDFAnchor
4646
from icat.model import Model
4747

48-
__version__ = "0.7.2"
48+
__version__ = "0.7.3"
4949

5050

5151
def initialize(offline: bool = False):

requirements.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ panel
22
numpy
33
pandas
44
scikit-learn
5-
ipyvuetify
6-
ipywidgets
5+
ipyvuetify~=1.9
6+
ipywidgets<8.1.3
7+
jupyterlab-widgets<3.0.11
78
ipyanchorviz
89
altair
910
pytest

0 commit comments

Comments
 (0)