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

Prepare for 2.0 release #42

Merged
merged 1 commit into from
Feb 15, 2024
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
13 changes: 12 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,20 @@ And an UML class diagram from a model:
Changelog
=========

1.4 - Unreleased
2.0 - 2024-02-15
----------------

- Compatibility with SQLAlchemy 2.x [Jonathan Chico]

- Python requirements changed to >= 3.8 [zlopez]

1.4 - 2024-02-15
----------------

Last release to support Python 2.

- Limit SQLAlchemy dependency to < 2.0 to fix installation for Python 2 [abitrolly - Anatoli Babenia]

- Set dir kwarg in Edge instantiation to 'both' in order to show arrow heads and arrow tails.
[bkrn - Aaron Di Silvestro]

Expand Down
2 changes: 1 addition & 1 deletion sqlalchemy_schemadisplay/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .model_diagram import create_uml_graph
from .utils import show_schema_graph, show_uml_graph

__version__ = "0.1.0"
__version__ = "2.0.0"

__all__ = (
"create_schema_graph",
Expand Down
Loading