Skip to content

Commit 0142fb1

Browse files
committed
Fix for #24
1 parent 443da69 commit 0142fb1

File tree

4 files changed

+19
-5
lines changed

4 files changed

+19
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [0.19.1] - 2024-02-09
8+
9+
### FIXED
10+
11+
- Fix for #21. Dependency to pytest changed from `>=8.0.0` to `~=7.4`. Other dependecies
12+
changed from `>=` to `~=`.
13+
714
## [0.19.0] - 2024-02-08
815

916
### Changed

docs/changelog.txt

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ Changelog
44

55
.. currentmodule:: firebird.qa.plugin
66

7+
8+
Version 0.19.1
9+
==============
10+
11+
* Fix for `#21 <https://github.com/FirebirdSQL/firebird-qa/issues/21>`_. Dependency to pytest
12+
changed from `>=8.0.0` to `~=7.4`. Other dependecies changed from `>=` to `~=`.
13+
714
Version 0.19.0
815
==============
916

pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ classifiers = [
3232
"Framework :: Pytest",
3333
]
3434
dependencies = [
35-
"firebird-base>=1.7.1",
36-
"firebird-driver>=1.10.1",
37-
"pytest>=8.0.0",
38-
"psutil>=5.9.8",
35+
"firebird-base~=1.7.1",
36+
"firebird-driver~=1.10.1",
37+
"pytest~=7.4",
38+
"psutil~=5.9.8",
3939
]
4040

4141
[project.urls]

src/firebird/qa/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# SPDX-FileCopyrightText: 2021-present The Firebird Projects <www.firebirdsql.org>
22
#
33
# SPDX-License-Identifier: MIT
4-
__version__ = "0.19.0"
4+
__version__ = "0.19.1"

0 commit comments

Comments
 (0)