Skip to content

Commit

Permalink
Merge pull request #120 from ambitioninc/develop
Browse files Browse the repository at this point in the history
2.0.1
  • Loading branch information
somewes authored Dec 29, 2020
2 parents 9088bfa + 4bec258 commit c17e6d2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Release Notes
=============

v2.0.1
------
* Fixed docstring (alextatarinov)

v2.0.0
------
* Support django 2.2, 3.0, 3.1 only
Expand Down
4 changes: 2 additions & 2 deletions manager_utils/manager_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ def bulk_upsert(
However, if update_fields is not provided, this function reduces down to performing a bulk_create
on any non extant objects.
:type model_objs: list of dict
:param model_objs: A list of dictionaries that have fields corresponding to the model in the manager.
:type model_objs: list of :class:`Models<django:django.db.models.Model>`
:param model_objs: A list of models to upsert.
:type unique_fields: list of str
:param unique_fields: A list of fields that are used to determine if an object in objs matches a model
Expand Down
2 changes: 1 addition & 1 deletion manager_utils/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.0'
__version__ = '2.0.1'

0 comments on commit c17e6d2

Please sign in to comment.