diff --git a/README.rst b/README.rst index 5939860..9742069 100644 --- a/README.rst +++ b/README.rst @@ -6,9 +6,9 @@ Adds ``CreateView`` and ``DropView`` constructs to SQLAlchemy. Status ------ -Current version is 0.3.1; releases are infrequent as the code here is small and based on stable pieces of the SQLAlchemy API, so there has been minimal maintenance required so far to keep compatibility with new SQLAlchemy or python versions. +Current version is 0.3.2; releases are infrequent as the code here is small and based on stable pieces of the SQLAlchemy API, so there has been minimal maintenance required so far to keep compatibility with new SQLAlchemy or python versions. -This package is working with latest Python and SQLAlchemy as of late 2021. +This package is working with latest Python and SQLAlchemy (1.0+ and 2.0) as of early 2023. Usage ----- diff --git a/sqlalchemy_views/metadata.py b/sqlalchemy_views/metadata.py index 438d9cc..61de350 100644 --- a/sqlalchemy_views/metadata.py +++ b/sqlalchemy_views/metadata.py @@ -8,11 +8,11 @@ package = 'sqlalchemy-views' project = "View Manipulation for SQLAlchemy" project_no_spaces = project.replace(' ', '') -version = '0.3.1' +version = '0.3.2' description = 'Adds CreateView and DropView constructs to SQLAlchemy' authors = ['Jeff Klukas'] authors_string = ', '.join(authors) emails = ['jeff@klukas.net'] license = 'MIT' -copyright = '2019-2021 ' + authors_string +copyright = '2019-2023 ' + authors_string url = 'https://github.com/jklukas/sqlalchemy-views'