Skip to content

Commit 80fa7be

Browse files
committed
The next minor release will be 3.3.0
1 parent 9582ea5 commit 80fa7be

6 files changed

Lines changed: 12 additions & 9 deletions

File tree

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
SQLObject 3.2.0
2-
===============
1+
SQLObject 3.3.0a0
2+
=================
33

44
Thanks for looking at SQLObject. SQLObject is an object-relational
55
mapper, i.e., a library that will wrap your database tables in Python

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Install SQLObject on windows and test against MS SQL server and postgres
22
# Heavily inspired by Oliver Grisel's appveyor-demo (https://github.com/ogrisel/python-appveyor-demo)
33
# and Michael Sverdlik's appveyor-utils (https://github.com/cloudify-cosmo/appveyor-utils)
4-
version: 3.2.{build}
4+
version: 3.3.{build}
55

66
# Match travis
77
clone_depth: 50

docs/News.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ News
77

88
.. _start:
99

10+
SQLObject 3.3.0 (master)
11+
========================
12+
1013
SQLObject 3.2.0
1114
===============
1215

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[egg_info]
2-
tag_build =
3-
tag_date = 0
2+
tag_build = dev
3+
tag_date = 1
44
tag_svn_revision = 0
55

66
[flake8]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
:target: https://travis-ci.org/sqlobject/sqlobject
7070
""",
7171
classifiers=[
72-
"Development Status :: 5 - Production/Stable",
72+
"Development Status :: 3 - Alpha",
7373
"Intended Audience :: Developers",
7474
"License :: OSI Approved :: "
7575
"GNU Library or Lesser General Public License (LGPL)",

sqlobject/__version__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

2-
version = '3.2.0'
2+
version = '3.3.0'
33
major = 3
4-
minor = 2
4+
minor = 3
55
micro = 0
6-
release_level = 'final'
6+
release_level = 'alpha'
77
serial = 0
88
version_info = (major, minor, micro, release_level, serial)

0 commit comments

Comments
 (0)