Skip to content

Commit

Permalink
The next minor release will be 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phdru committed Mar 11, 2017
1 parent 9582ea5 commit 80fa7be
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.rst
@@ -1,5 +1,5 @@
SQLObject 3.2.0
===============
SQLObject 3.3.0a0
=================

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
2 changes: 1 addition & 1 deletion appveyor.yml
@@ -1,7 +1,7 @@
# Install SQLObject on windows and test against MS SQL server and postgres
# Heavily inspired by Oliver Grisel's appveyor-demo (https://github.com/ogrisel/python-appveyor-demo)
# and Michael Sverdlik's appveyor-utils (https://github.com/cloudify-cosmo/appveyor-utils)
version: 3.2.{build}
version: 3.3.{build}

# Match travis
clone_depth: 50
Expand Down
3 changes: 3 additions & 0 deletions docs/News.rst
Expand Up @@ -7,6 +7,9 @@ News

.. _start:

SQLObject 3.3.0 (master)
========================

SQLObject 3.2.0
===============

Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
@@ -1,6 +1,6 @@
[egg_info]
tag_build =
tag_date = 0
tag_build = dev
tag_date = 1
tag_svn_revision = 0

[flake8]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -69,7 +69,7 @@
:target: https://travis-ci.org/sqlobject/sqlobject
""",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: "
"GNU Library or Lesser General Public License (LGPL)",
Expand Down
6 changes: 3 additions & 3 deletions sqlobject/__version__.py
@@ -1,8 +1,8 @@

version = '3.2.0'
version = '3.3.0'
major = 3
minor = 2
minor = 3
micro = 0
release_level = 'final'
release_level = 'alpha'
serial = 0
version_info = (major, minor, micro, release_level, serial)

0 comments on commit 80fa7be

Please sign in to comment.