Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.2.0 #315

Merged
merged 2 commits into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ hooks:

.PHONY: release
release:
@bash -c "./scripts/release.sh"
@zsh -c "./scripts/release.sh"

.PHONY: test test-e2e coverage lint format docs clean
test:
Expand Down
15 changes: 15 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
Changelog
=========

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

* Fixed a bug in how webhook notification signatures are validated
- `PR #312 <https://github.com/gtalarico/pyairtable/pull/312>`_.
* Added support for reading and modifying :doc:`metadata`
- `PR #311 <https://github.com/gtalarico/pyairtable/pull/311>`_.
* Added support for the 'AI Text' field type
- `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>`_.

2.1.0 (2023-08-18)
------------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/source/metadata.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Metadata
==============

The Airtable API gives you the ability to list all of your bases, tables, fields, and views.
pyAirtable allows you to inspect and interact with the metadata in your bases.
pyAirtable allows you to inspect and interact with this metadata in your bases.

There may be parts of the Airtable API which are not supported below;
you can always use :meth:`Api.request <pyairtable.Api.request>` to call them directly.
Expand Down Expand Up @@ -62,7 +62,7 @@ Modifying existing schema

To modify a table or field, you can modify its schema object directly and
call ``save()``, as shown below. You can only change names and descriptions;
the Airtable API does not permit changing a field's type or other options.
the Airtable API does not permit changing any other options.

.. code-block:: python

Expand Down
2 changes: 1 addition & 1 deletion pyairtable/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.1.0.post1"
__version__ = "2.2.0"

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