Skip to content

Commit

Permalink
Bump version to 0.18.0 BACKWARDS INCOMPATIBLE WARNING
Browse files Browse the repository at this point in the history
  • Loading branch information
nhumrich committed Oct 3, 2017
1 parent 5947422 commit f766383
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ for an example of creating a dialect. Please let me know if the change from
psycopg2 to pypostgres broke you. If this happens enough,
I might make psycopg2 the default.

2. 0.18.0 Removes the Record Proxy objects that would wrap asyncpg's records. Now
asyncpgsa just returns whatever asyncpg would return. This is a HUGE backwards incompatible change
but most people just used record._data to get the object directly anyways. This means dot notation
for columns is no longer possible and you need to access columns using exact names with dictionary notation.


## sqlalchemy ORM

Currently this repo does not support SA ORM, only SA Core.
Expand Down
2 changes: 1 addition & 1 deletion asyncpgsa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
from .pgsingleton import PG
from .connection import compile_query

__version__ = '0.17.0'
__version__ = '0.18.0'
pg = PG()

0 comments on commit f766383

Please sign in to comment.