Skip to content
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
10 changes: 9 additions & 1 deletion docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@
Changelog
=========

3.3.0 (TBA)
3.3.0 (2025-11-05)
------------------------

* Added ``count_comments=`` parameter to ``Table.all`` and ``Table.first``.
- `PR #441 <https://github.com/gtalarico/pyairtable/pull/441>`_
* Added support for `Create Workspace <https://airtable.com/developers/web/api/create-workspace>`_
via :meth:`Enterprise.create_workspace <pyairtable.Enterprise.create_workspace>`.
- `PR #442 <https://github.com/gtalarico/pyairtable/pull/442>`_
* Added support for Python 3.14 and dropped support for Python 3.9.
- `PR #443 <https://github.com/gtalarico/pyairtable/pull/443>`_
* Added pyairtable.models.schema.FieldType enum.
- `PR #444 <https://github.com/gtalarico/pyairtable/pull/444>`_

3.2.0 (2025-08-17)
------------------------
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__ = "3.2.0"
__version__ = "3.3.0"

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