This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SQLObject development repository".
The branch, master has been updated
via 80fa7be57fa66d9acfcdc3abde1d4098bb2da12f (commit)
via 9582ea5f09b30def878733aeb6c2684e06f749dd (commit)
via a668ae7d10a46ffe0cd41a4986382aaecfcd4046 (commit)
from 5cf21b222d8ee8bacf31c4aab7680bf784ec65e2 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceforge.net/p/sqlobject/sqlobject/ci/80fa7be57fa66d9acfcdc3abde1d4098bb2da12f
commit 80fa7be57fa66d9acfcdc3abde1d4098bb2da12f
Author: Oleg Broytman <ph...@ph...>
Date: Sat Mar 11 18:42:20 2017 +0300
The next minor release will be 3.3.0
diff --git a/README.rst b/README.rst
index aeba538..173a5de 100644
--- a/README.rst
+++ b/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
diff --git a/appveyor.yml b/appveyor.yml
index 3d95e3b..c7ccf44 100644
--- a/appveyor.yml
+++ b/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
diff --git a/docs/News.rst b/docs/News.rst
index f724643..c266992 100644
--- a/docs/News.rst
+++ b/docs/News.rst
@@ -7,6 +7,9 @@ News
.. _start:
+SQLObject 3.3.0 (master)
+========================
+
SQLObject 3.2.0
===============
diff --git a/setup.cfg b/setup.cfg
index 09f2643..4c5fd41 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
[egg_info]
-tag_build =
-tag_date = 0
+tag_build = dev
+tag_date = 1
tag_svn_revision = 0
[flake8]
diff --git a/setup.py b/setup.py
index ea28429..031c43d 100755
--- a/setup.py
+++ b/setup.py
@@ -69,7 +69,7 @@ and `GitHub <https://github.com/sqlobject>`_.
: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)",
diff --git a/sqlobject/__version__.py b/sqlobject/__version__.py
index 8d6b483..cc4f6fb 100644
--- a/sqlobject/__version__.py
+++ b/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)
http://sourceforge.net/p/sqlobject/sqlobject/ci/9582ea5f09b30def878733aeb6c2684e06f749dd
commit 9582ea5f09b30def878733aeb6c2684e06f749dd
Author: Oleg Broytman <ph...@ph...>
Date: Sat Mar 11 18:20:25 2017 +0300
Release 3.2.0
diff --git a/README.rst b/README.rst
index 02a8dbf..aeba538 100644
--- a/README.rst
+++ b/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
diff --git a/setup.cfg b/setup.cfg
index 4c5fd41..09f2643 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
[egg_info]
-tag_build = dev
-tag_date = 1
+tag_build =
+tag_date = 0
tag_svn_revision = 0
[flake8]
diff --git a/setup.py b/setup.py
index d1bd5f5..ea28429 100755
--- a/setup.py
+++ b/setup.py
@@ -69,7 +69,7 @@ and `GitHub <https://github.com/sqlobject>`_.
: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)",
@@ -89,8 +89,7 @@ and `GitHub <https://github.com/sqlobject>`_.
maintainer="Oleg Broytman",
maintainer_email="ph...@ph...",
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],
diff --git a/sqlobject/__version__.py b/sqlobject/__version__.py
index 554ea74..8d6b483 100644
--- a/sqlobject/__version__.py
+++ b/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)
http://sourceforge.net/p/sqlobject/sqlobject/ci/a668ae7d10a46ffe0cd41a4986382aaecfcd4046
commit a668ae7d10a46ffe0cd41a4986382aaecfcd4046
Author: Oleg Broytman <ph...@ph...>
Date: Sat Mar 11 18:15:53 2017 +0300
SQLObject 3.2.0 was released 11 Mar 2017
diff --git a/docs/News.rst b/docs/News.rst
index 7cce01d..f724643 100644
--- a/docs/News.rst
+++ b/docs/News.rst
@@ -7,8 +7,10 @@ News
.. _start:
-SQLObject 3.2.0 (master)
-========================
+SQLObject 3.2.0
+===============
+
+Released 11 Mar 2017.
Minor features
--------------
-----------------------------------------------------------------------
Summary of changes:
README.rst | 2 +-
appveyor.yml | 2 +-
docs/News.rst | 7 ++++++-
setup.py | 5 ++---
sqlobject/__version__.py | 8 ++++----
5 files changed, 14 insertions(+), 10 deletions(-)
hooks/post-receive
--
SQLObject development repository
|