Skip to content

Commit 33d2220

Browse files
committed
Release 0.8.0
1 parent cd94aa4 commit 33d2220

File tree

13 files changed

+3169
-127
lines changed

13 files changed

+3169
-127
lines changed

docs/changelog.txt

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
Changelog
33
#########
44

5+
Version 0.8.0
6+
=============
7+
8+
The driver is no longer *beta*, and is now considered as **stable** for Firebird 3.0 (support for Firebird 4 is still evolving till final release).
9+
10+
* Documentation, both in code and separate (especially Usage Guide).
11+
* Added support for new FB4 data types in ARRAY fields.
12+
* Refactoring in driver hooks.
13+
* New `.Cursor.call_procedure()` method.
14+
* Refactoring and fixes in Server and its services.
15+
516
Version 0.7.0
617
=============
718

@@ -29,7 +40,7 @@ Version 0.6.0
2940
- Emit warnings when objects with allocated Firebird resources are disposed (by Python
3041
GC) without prior call to `close()`.
3142
- Trace instrumentation removed. Use dynamic trace configuration from firebird-base 0.6.0.
32-
- `Connection` and `Transaction` information moved to inner objects accesible via `info`
43+
- `Connection` and `Transaction` information moved to inner objects accessible via `info`
3344
properties (relates to FB4+ support).
3445

3546
Version 0.5.0

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
author = 'Pavel Císař'
2424

2525
# The short X.Y version
26-
version = '0.7.0'
26+
version = '0.8.0'
2727

2828
# The full version, including alpha/beta/rc tags
29-
release = '0.7.0'
29+
release = '0.8.0'
3030

3131

3232
# -- General configuration ---------------------------------------------------

docs/getting-started.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,6 @@ Run pip::
2020

2121
$ pip install firebird-driver
2222

23-
.. _setuptools: https://pypi.org/project/setuptools/
24-
.. _PYPI: https://pypi.org/
25-
.. _ctypes: http://docs.python.org/library/ctypes.html
26-
.. _pip: https://pypi.org/project/pip/
27-
.. _firebird-base: https://firebird-base.rtfd.io
28-
2923
Quick-start Guide
3024
*****************
3125

@@ -45,7 +39,7 @@ also includes the definition of connection parameters to Firebird servers and da
4539

4640
The default configuration connects to embedded server using direct/local connection method.
4741
To access remote servers and databases (or local ones through remote protocols), it's
48-
neccessary to adjust default configuration, or `register` them in configuration manager.
42+
necessary to adjust default configuration, or `register` them in configuration manager.
4943

5044
You can manipulate the configuration objects directly, or load configuration from files or
5145
strings (in `.ini-style` `ConfigParser` format).
@@ -105,7 +99,7 @@ such as this:
10599

106100
.. note::
107101

108-
Some parameters like 'user' and 'password' could be overriden with keyword parameters.
102+
Some parameters like 'user' and 'password' could be overridden with keyword parameters.
109103
Few parameters like 'crypt_callback' or 'no_db_triggers' could be specified **ONLY**
110104
as keyword arguments.
111105

@@ -327,3 +321,9 @@ To *execute* a stored procedure and *access its output parameters*, use code suc
327321
This latter is not very elegant; it would be preferable to access the procedure's output
328322
parameters as the return value of `Cursor.callproc()`. The Python DB API specification
329323
requires the current behavior, however.
324+
325+
.. _setuptools: https://pypi.org/project/setuptools/
326+
.. _PYPI: https://pypi.org/
327+
.. _ctypes: http://docs.python.org/library/ctypes.html
328+
.. _pip: https://pypi.org/project/pip/
329+
.. _firebird-base: https://firebird-base.rtfd.io

docs/ref-main.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Constants
1111
.. autodata:: __VERSION__
1212

1313

14-
Imports from submodules
15-
=======================
14+
Imports from sub-modules
15+
========================
1616

1717
config
1818
------

0 commit comments

Comments
 (0)