Skip to content

Commit

Permalink
Merge pull request #321 from mesozoic/release-2.2.1
Browse files Browse the repository at this point in the history
Release 2.2.1
  • Loading branch information
mesozoic committed Nov 29, 2023
2 parents 59534ab + 83ae50f commit e62a24e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
12 changes: 9 additions & 3 deletions docs/source/changelog.rst
Expand Up @@ -2,6 +2,12 @@
Changelog
=========

2.2.1 (2023-11-28)
------------------------

* :meth:`~pyairtable.Table.update` now accepts ``return_fields_by_field_id=True``
- `PR #320 <https://github.com/gtalarico/pyairtable/pull/320>`_.

2.2.0 (2023-11-13)
------------------------

Expand All @@ -13,9 +19,9 @@ Changelog
- `PR #310 <https://github.com/gtalarico/pyairtable/pull/310>`_.
* Batch methods can now accept generators or iterators, not just lists
- `PR #308 <https://github.com/gtalarico/pyairtable/pull/308>`_.
* Fixed a few documentation errors
- `PR #301 <https://github.com/gtalarico/pyairtable/pull/301>`_,
`PR #306 <https://github.com/gtalarico/pyairtable/pull/306>`_.
* Fixed a few documentation errors -
`PR #301 <https://github.com/gtalarico/pyairtable/pull/301>`_,
`PR #306 <https://github.com/gtalarico/pyairtable/pull/306>`_.

2.1.0 (2023-08-18)
------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/migrations.rst
Expand Up @@ -53,7 +53,7 @@ See below for supported and unsupported patterns:
# The following will raise a TypeError. We do this proactively
# to avoid situations where self.api and self.base don't align.
>>> table = Table(api, base_id, table_name) # [Api, Base, str]
>>> table = Table(api, base, table_name) # [Api, Base, str]
You may need to change how your code looks up some pieces of connection metadata; for example:

Expand Down
2 changes: 1 addition & 1 deletion pyairtable/__init__.py
@@ -1,4 +1,4 @@
__version__ = "2.2.0"
__version__ = "2.2.1"

from .api import Api, Base, Table
from .api.enterprise import Enterprise
Expand Down

0 comments on commit e62a24e

Please sign in to comment.