diff --git a/CHANGELOG.md b/CHANGELOG.md index e25b372..92d34c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.2] - 2024-05-23 + +### Changed + +- Depends on utm 0.13.0 (#15). + ## [0.9.1] - 2024-02-27 ### Changed @@ -74,7 +80,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Depends on utm 0.8.0 -[unreleased]: https://github.com/cms-l1-globaltrigger/tm-diff/compare/0.9.1...HEAD +[unreleased]: https://github.com/cms-l1-globaltrigger/tm-diff/compare/0.9.2...HEAD +[0.9.2]: https://github.com/cms-l1-globaltrigger/tm-diff/compare/0.9.1...0.9.2 [0.9.1]: https://github.com/cms-l1-globaltrigger/tm-diff/compare/0.9.0...0.9.1 [0.9.0]: https://github.com/cms-l1-globaltrigger/tm-diff/compare/0.8.1...0.9.0 [0.8.1]: https://github.com/cms-l1-globaltrigger/tm-diff/compare/0.8.0...0.8.1 diff --git a/README.md b/README.md index 353b895..c866c35 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Install using pip (>= 19.0). ```bash pip install --upgrade pip -pip install git+https://github.com/cms-l1-globaltrigger/tm-diff.git@0.9.1 +pip install git+https://github.com/cms-l1-globaltrigger/tm-diff.git@0.9.2 ``` ## Basic usage diff --git a/requirements.txt b/requirements.txt index d92183f..4ea7a94 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -tm-python @ git+https://github.com/cms-l1-globaltrigger/tm-python@0.12.0 +tm-python @ git+https://github.com/cms-l1-globaltrigger/tm-python@0.13.0 diff --git a/setup.cfg b/setup.cfg index 21967e1..e4d9fc9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,7 +15,7 @@ classifiers = python_requires = >=3.6 packages = find: install_requires = - tm-python @ git+https://github.com/cms-l1-globaltrigger/tm-python@0.12.0 + tm-python @ git+https://github.com/cms-l1-globaltrigger/tm-python@0.13.0 test_suite = tests [options.packages.find] diff --git a/tmDiff/__init__.py b/tmDiff/__init__.py index d69d16e..a2fecb4 100644 --- a/tmDiff/__init__.py +++ b/tmDiff/__init__.py @@ -1 +1 @@ -__version__ = "0.9.1" +__version__ = "0.9.2" diff --git a/tox.ini b/tox.ini index 9eaea4f..e12aa9c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36, py37, py38, py39, py310, py311 +envlist = py36, py37, py38, py39, py310, py311, py312 isolated_build = true skip_missing_interpreters = true