mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 13:33:07 +01:00
Fix for #24
This commit is contained in:
parent
443da69aae
commit
0142fb1d3b
@ -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
|
||||
|
@ -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
|
||||
==============
|
||||
|
||||
|
@ -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]
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user