Skip to content
This repository was archived by the owner on Aug 19, 2025. It is now read-only.

Commit e54bb28

Browse files
authored
Version 0.4.0 (#255)
Changelog: - Use backend native fetch_val() implementation when available (#132) - Replace psycopg2-binary with psycopg2 (#198) (#204) - Speed up PostgresConnection fetch() and iterate() (#193) - Access asyncpg Record field by key on raw query (#207) - Fix type hinting for sqlite backend (#227) - Allow setting min_size and max_size in postgres DSN (#210) - Add option pool_recycle in postgres DSN (#233) - Fix SQLAlchemy DDL statements (#226) - Make fetch_val call fetch_one for type conversion (#246) - Allow extra transaction options (#242) - Unquote username and password in DatabaseURL (#248)
1 parent 916b528 commit e54bb28

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6+
7+
## 0.4.0 (October 20th, 2020)
8+
9+
### Added
10+
11+
* Use backend native fetch_val() implementation when available (#132)
12+
* Replace psycopg2-binary with psycopg2 (#204)
13+
* Speed up PostgresConnection fetch() and iterate() (#193)
14+
* Access asyncpg Record field by key on raw query (#207)
15+
* Allow setting min_size and max_size in postgres DSN (#210)
16+
* Add option pool_recycle in postgres DSN (#233)
17+
* Allow extra transaction options (#242)
18+
19+
### Fixed
20+
21+
* Fix type hinting for sqlite backend (#227)
22+
* Fix SQLAlchemy DDL statements (#226)
23+
* Make fetch_val call fetch_one for type conversion (#246)
24+
* Unquote username and password in DatabaseURL (#248)
25+

databases/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from databases.core import Database, DatabaseURL
22

3-
__version__ = "0.3.2"
3+
__version__ = "0.4.0"
44
__all__ = ["Database", "DatabaseURL"]

0 commit comments

Comments
 (0)