Skip to content

Commit bad52c4

Browse files
committed
Bump version to 1.7
1 parent 21d21df commit bad52c4

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Browse the documentation at: http://django-postgres-extra.readthedocs.io
2222
Major features
2323
-----
2424
* Single query, concurrency safe upserts, or safely ignoring a duplicate insert.
25-
* Using PostgreSQL's ``ON CONFLICT DO ...``.
2625
* Unique and not null constraints for `HStoreField`.
2726
* Signals for updates.
2827

psqlextra/compiler.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,9 @@ def _get_model_field(self, name: str):
207207
name:
208208
The name of the field to look for.
209209
210+
This can be both the actual field name, or
211+
the name of the column, both will work :)
212+
210213
Returns:
211214
The field with the specified name or None if
212215
no such field exists.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='django-postgres-extra',
10-
version='1.6',
10+
version='1.7',
1111
packages=find_packages(),
1212
include_package_data=True,
1313
license='MIT License',

0 commit comments

Comments
 (0)