6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 13:33:07 +01:00
This commit is contained in:
Pavel Císař 2024-02-09 16:21:05 +01:00
parent 443da69aae
commit 0142fb1d3b
4 changed files with 19 additions and 5 deletions

View File

@ -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

View File

@ -4,6 +4,13 @@ Changelog
.. currentmodule:: firebird.qa.plugin
Version 0.19.1
==============
* Fix for `#21 <https://github.com/FirebirdSQL/firebird-qa/issues/21>`_. Dependency to pytest
changed from `>=8.0.0` to `~=7.4`. Other dependecies changed from `>=` to `~=`.
Version 0.19.0
==============

View File

@ -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]

View File

@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2021-present The Firebird Projects <www.firebirdsql.org>
#
# SPDX-License-Identifier: MIT
__version__ = "0.19.0"
__version__ = "0.19.1"