From 5f959ed4a898068fd6073a452c5a13f4e19ea59e Mon Sep 17 00:00:00 2001 From: Jeff Klukas Date: Sat, 18 Feb 2023 21:35:56 +0000 Subject: [PATCH] Release version 0.3.2 --- README.rst | 4 ++-- sqlalchemy_views/metadata.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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'