diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f5e9f6..499c108 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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/). +## [1.10.11] - 2025-04-22 + +### Changed + +- Dependency to `firebird-base` adjusted to `~=1.8` + ## [1.10.10] - 2025-04-04 ### Fixed diff --git a/docs/changelog.txt b/docs/changelog.txt index e3dd46b..3149db9 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -2,6 +2,11 @@ Changelog ######### +Version 1.10.11 +=============== + +- Dependency to `firebird-base` adjusted to "~=1.8" + Version 1.10.10 =============== diff --git a/pyproject.toml b/pyproject.toml index 92f87e5..40362e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ classifiers = [ "Topic :: Database", ] dependencies = [ - "firebird-base>=1.8.0", + "firebird-base~=1.8", "python-dateutil>=2.8", ] diff --git a/src/firebird/driver/__init__.py b/src/firebird/driver/__init__.py index 6eff7ee..531846c 100644 --- a/src/firebird/driver/__init__.py +++ b/src/firebird/driver/__init__.py @@ -61,4 +61,4 @@ Server, Statement) #: Current driver version, SEMVER string. -__VERSION__ = '1.10.10' +__VERSION__ = '1.10.11'