Skip to content

Commit 3367ab4

Browse files
committed
Merge branch 'v0.7.x'
2 parents 0879937 + 09f5941 commit 3367ab4

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

AUTHORS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Contributors
2727
* Nicolas Crocfer <[email protected]>
2828
* Denys Badzo <[email protected]>
2929
* Pavol Vargovcik <[email protected]>
30+
* Mykyta Holubakha <[email protected]>
3031

3132

3233
Special thanks to my wife Daisy and her outsourcing company `DecentFoX Studio`_,

HISTORY.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ GINO 0.7
77

88
This is also version 1.0 beta 3.
99

10+
0.7.6 (2018-08-26)
11+
^^^^^^^^^^^^^^^^^^
12+
13+
* Updated library support (Contributed by Tony Wang in #275 #309)
14+
* Added ``none_as_none()`` (#281 #282)
15+
* Added ``ARRAY`` alias in asyncpg dialect module (Contributed by Mykyta Holubakha in #289)
16+
* Added ``Model.lookup()`` to prevent updating whole table without primary key (#287 #288)
17+
* Added ``DB_ECHO`` in extension options (Contributed by Mykyta Holubakha in #298)
18+
* Fixed broken JSON/JSONB result processor since 0.5.8 (Contributed by Tony Wang in #291 #305)
19+
* Removed bad rollback after a failing commit (Contributed by Tony Wang in #302 #304)
20+
* Fixed to raise ``UninitializedError`` if bind is ``None`` (Contributed by Tony Wang in #307 #310)
21+
1022
0.7.5 (2018-07-26)
1123
^^^^^^^^^^^^^^^^^^
1224

gino/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def create_engine(*args, **kwargs):
1111
return create_engine(*args, **kwargs)
1212

1313

14-
__version__ = '0.7.5'
14+
__version__ = '0.7.6'

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.7.5
2+
current_version = 0.7.6
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def req_file(filename):
3131

3232
setup(
3333
name='gino',
34-
version='0.7.5',
34+
version='0.7.6',
3535
description="GINO Is Not ORM - "
3636
"a Python asyncio ORM on SQLAlchemy core.",
3737
long_description=readme + '\n\n' + history,

0 commit comments

Comments
 (0)