Skip to content

Commit

Permalink
Release version 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jklukas committed Feb 18, 2023
1 parent 5280948 commit 5f959ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----
Expand Down
4 changes: 2 additions & 2 deletions sqlalchemy_views/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ['[email protected]']
license = 'MIT'
copyright = '2019-2021 ' + authors_string
copyright = '2019-2023 ' + authors_string
url = 'https://github.com/jklukas/sqlalchemy-views'

0 comments on commit 5f959ed

Please sign in to comment.