From 0142fb1d3b2b7b737f0fe0cd0edde69e47f71143 Mon Sep 17 00:00:00 2001 From: Pavel Cisar Date: Fri, 9 Feb 2024 16:21:05 +0100 Subject: [PATCH] Fix for #24 --- CHANGELOG.md | 7 +++++++ docs/changelog.txt | 7 +++++++ pyproject.toml | 8 ++++---- src/firebird/qa/__about__.py | 2 +- 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e55669b..415c5a36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.19.1] - 2024-02-09 + +### FIXED + +- Fix for #21. Dependency to pytest changed from `>=8.0.0` to `~=7.4`. Other dependecies + changed from `>=` to `~=`. + ## [0.19.0] - 2024-02-08 ### Changed diff --git a/docs/changelog.txt b/docs/changelog.txt index 915319f1..466149a0 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -4,6 +4,13 @@ Changelog .. currentmodule:: firebird.qa.plugin + +Version 0.19.1 +============== + +* Fix for `#21 `_. Dependency to pytest + changed from `>=8.0.0` to `~=7.4`. Other dependecies changed from `>=` to `~=`. + Version 0.19.0 ============== diff --git a/pyproject.toml b/pyproject.toml index 8916b813..5b61e475 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,10 +32,10 @@ classifiers = [ "Framework :: Pytest", ] dependencies = [ - "firebird-base>=1.7.1", - "firebird-driver>=1.10.1", - "pytest>=8.0.0", - "psutil>=5.9.8", + "firebird-base~=1.7.1", + "firebird-driver~=1.10.1", + "pytest~=7.4", + "psutil~=5.9.8", ] [project.urls] diff --git a/src/firebird/qa/__about__.py b/src/firebird/qa/__about__.py index cdd67f5a..862cfec1 100644 --- a/src/firebird/qa/__about__.py +++ b/src/firebird/qa/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2021-present The Firebird Projects # # SPDX-License-Identifier: MIT -__version__ = "0.19.0" +__version__ = "0.19.1"