Skip to content

Commit

Permalink
docs: Expand changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Apr 27, 2024
1 parent a1fe7e6 commit 907213f
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,37 @@
1.11.0 - April 27. 2024
1.10.0 - April 27. 2024
-----------------------

* fix: Fix :meth:`.TableSet.print_structure` for nested tablesets. (#765)
- fix: Fix :meth:`.TableSet.print_structure` for nested tablesets. (#765)

.. code-block:: python
import agate
mytable = agate.Table([
('foo', 'FOO', 1),
('foo', 'FOO', 2),
('bar', 'BOZ', 1),
('bar', 'BAZ', 2),
('bar', 'BIZ'),
])
Instead of:

.. code-block:: none
>>> mytable.group_by('a').group_by('b')
AttributeError: 'TableSet' object has no attribute 'rows'
Now:

.. code-block:: none
>>> mytable.group_by('a').group_by('b')
| table | rows |
| ------- | ---- |
| foo.FOO | 2 |
| bar.BOZ | 1 |
| bar.BAZ | 1 |
| bar.BIZ | 1 |
1.9.1 - December 21, 2023
-------------------------
Expand Down

0 comments on commit 907213f

Please sign in to comment.