Skip to content

Commit

Permalink
bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Mar 12, 2024
1 parent 39959b4 commit c55f8cf
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGES.rst
@@ -1,6 +1,30 @@
Changes
=======

1.4.1
-----

Fixed an edge case with auto migrations.

If starting from a table like this, with a custom primary key column:

.. code-block:: python
class MyTable(Table):
id = UUID(primary_key=True)
When a foreign key is added to the table which references itself:

.. code-block:: python
class MyTable(Table):
id = UUID(primary_key=True)
fk = ForeignKey("self")
The auto migrations could fail in some situations.

-------------------------------------------------------------------------------

1.4.0
-----

Expand Down
2 changes: 1 addition & 1 deletion piccolo/__init__.py
@@ -1 +1 @@
__VERSION__ = "1.4.0"
__VERSION__ = "1.4.1"

0 comments on commit c55f8cf

Please sign in to comment.