Skip to content

Commit

Permalink
bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Aug 27, 2022
1 parent 3058196 commit eedc868
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Changes
=======

0.88.0
------

Fixed a bug with migrations - when using ``db_column_name`` it wasn't being
used in some alter statements. Thanks to @theelderbeever for reporting this
issue.

.. code-block:: python
class Concert(Table):
# We use `db_column_name`` when the column name is problematic - e.g. if
# it clashes with a Python ketword.
in_ = Varchar(db_column_name='in')
-------------------------------------------------------------------------------

0.87.0
------

Expand Down
2 changes: 1 addition & 1 deletion piccolo/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__VERSION__ = "0.87.0"
__VERSION__ = "0.88.0"

0 comments on commit eedc868

Please sign in to comment.