6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-02-02 02:40:42 +01:00

Release 0.13.0

This commit is contained in:
Pavel Císař 2022-04-19 12:00:38 +02:00
parent 8b1f46f34e
commit 2e9a19c816
3 changed files with 11 additions and 4 deletions

View File

@ -2,6 +2,13 @@
Changelog Changelog
######### #########
Version 0.13.0
==============
* Explicit `Optional` typing.
* Added support for both `encoding` and `encoding_errors` in `.Action.connect_server()`
and `.Action.trace()`.
Version 0.12.1 Version 0.12.1
============== ==============

View File

@ -23,10 +23,10 @@ copyright = '2022, Pavel Cisar'
author = 'Pavel Císař' author = 'Pavel Císař'
# The short X.Y version # The short X.Y version
version = '0.12.1' version = '0.13.0'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '0.12.1' release = '0.13.0'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
@ -54,7 +54,7 @@ source_suffix = '.txt'
# List of patterns, relative to source directory, that match files and # List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files. # directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path. # This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'requirements.txt']
default_role = 'py:obj' default_role = 'py:obj'

View File

@ -5,7 +5,7 @@ all-files=True
[metadata] [metadata]
name = firebird-qa name = firebird-qa
version = 0.12.1 version = 0.13.0
description = pytest plugin for Firebird QA description = pytest plugin for Firebird QA
long_description = file: README.rst long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8 long_description_content_type = text/x-rst; charset=UTF-8