Skip to content

Commit

Permalink
Release 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phdru committed Mar 11, 2017
1 parent a668ae7 commit 9582ea5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.rst
@@ -1,5 +1,5 @@
SQLObject 3.2.0b1
=================
SQLObject 3.2.0
===============

Thanks for looking at SQLObject. SQLObject is an object-relational
mapper, i.e., a library that will wrap your database tables in Python
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
@@ -1,6 +1,6 @@
[egg_info]
tag_build = dev
tag_date = 1
tag_build =
tag_date = 0
tag_svn_revision = 0

[flake8]
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Expand Up @@ -69,7 +69,7 @@
:target: https://travis-ci.org/sqlobject/sqlobject
""",
classifiers=[
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: "
"GNU Library or Lesser General Public License (LGPL)",
Expand All @@ -89,8 +89,7 @@
maintainer="Oleg Broytman",
maintainer_email="phd@phdru.name",
url="http://sqlobject.org/devel/",
download_url="https://pypi.python.org/pypi/SQLObject/%s.dev20170223" %
version,
download_url="https://pypi.python.org/pypi/SQLObject/%s" % version,
license="LGPL",
packages=["sqlobject"] +
['sqlobject.%s' % package for package in subpackages],
Expand Down
6 changes: 3 additions & 3 deletions sqlobject/__version__.py
@@ -1,8 +1,8 @@

version = '3.2.0b1'
version = '3.2.0'
major = 3
minor = 2
micro = 0
release_level = 'beta'
serial = 1
release_level = 'final'
serial = 0
version_info = (major, minor, micro, release_level, serial)

0 comments on commit 9582ea5

Please sign in to comment.