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 c714f55a9aa4990020711494d2d3911faf9566c4 (commit)
via cc185d98ac00892335778446c5f554a16e9122dd (commit)
via bcc6084516541c73dd8b2e467e30b4ff7118ea82 (commit)
from 2dddc9e4d9421f1b4dc8f438c96cdd24567a4864 (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/c714f55a9aa4990020711494d2d3911faf9566c4
commit c714f55a9aa4990020711494d2d3911faf9566c4
Author: Oleg Broytman <ph...@ph...>
Date: Sat Nov 11 16:13:36 2023 +0300
Build: Prepare for the next release
[skip ci]
diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst
index fbb6112..2faac81 100644
--- a/ANNOUNCE.rst
+++ b/ANNOUNCE.rst
@@ -1,28 +1,26 @@
Hello!
-I'm pleased to announce version 3.11.0, the first stable release
-of branch 3.11 of SQLObject.
+I'm pleased to announce version 3.11.1a1, the first alpha of the upcoming
+release of branch 3.11 of SQLObject.
+I'm pleased to announce version 3.11.1a2, the second alpha of the upcoming
+release of branch 3.11 of SQLObject.
-What's new in SQLObject
-=======================
+I'm pleased to announce version 3.11.1b1, the first beta of the upcoming
+release of branch 3.11 of SQLObject.
+
+I'm pleased to announce version 3.11.1rc1, the first release candidate
+of the upcoming release of branch 3.11 of SQLObject.
-Features
---------
+I'm pleased to announce version 3.11.1, the first bugfix release of branch
+3.11 of SQLObject.
-* Continue working on ``SQLRelatedJoin`` aliasing introduced in 3.10.2.
- When a table joins with itself calling
- ``relJoinCol.filter(thisClass.q.column)`` raises ``ValueError``
- hinting that an alias is required for filtering.
-* Test that ``idType`` is either ``int`` or ``str``.
+What's new in SQLObject
+=======================
+
+The contributors for this release are ... Thanks!
-* Added ``sqlmeta.idSize``. This sets the size of integer column ``id``
- for MySQL and PostgreSQL. Allowed values are ``'TINY'``, ``'SMALL'``,
- ``'MEDIUM'``, ``'BIG'``, ``None``; default is ``None``. For Postgres
- mapped to ``smallserial``/``serial``/``bigserial``. For other backends
- it's currently ignored. Feature request by Meet Gujrathi at
- https://stackoverflow.com/q/77360075/7976758
For a more complete list, please see the news:
http://sqlobject.org/News.html
@@ -54,7 +52,7 @@ Site:
http://sqlobject.org
Download:
-https://pypi.org/project/SQLObject/3.11.0
+https://pypi.org/project/SQLObject/3.11.1a0.dev20231112/
News and changes:
http://sqlobject.org/News.html
diff --git a/README.rst b/README.rst
index 8e89539..d9390c7 100644
--- a/README.rst
+++ b/README.rst
@@ -1,5 +1,5 @@
-SQLObject 3.11.0
-================
+SQLObject 3.11.1a0
+==================
SQLObject is a free and open-source (LGPL) Python object-relational
mapper. Your database tables are described as classes, and rows are
diff --git a/docs/News.rst b/docs/News.rst
index e5aa90e..270a44a 100644
--- a/docs/News.rst
+++ b/docs/News.rst
@@ -5,9 +5,14 @@ News
.. contents:: Contents:
:backlinks: none
+SQLObject (master)
+==================
+
SQLObject 3.11.0
================
+Released 2023 Nov 11.
+
Features
--------
diff --git a/setup.py b/setup.py
index b1dea83..28a634b 100755
--- a/setup.py
+++ b/setup.py
@@ -47,7 +47,7 @@ and `GitHub <https://github.com/sqlobject>`_.
""", # noqa: E501 line too long
long_description_content_type="text/x-rst",
classifiers=[
- "Development Status :: 5 - Production/Stable",
+ "Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: "
"GNU Library or Lesser General Public License (LGPL)",
http://sourceforge.net/p/sqlobject/sqlobject/ci/cc185d98ac00892335778446c5f554a16e9122dd
commit cc185d98ac00892335778446c5f554a16e9122dd
Author: Oleg Broytman <ph...@ph...>
Date: Sat Nov 11 16:05:53 2023 +0300
Release 3.11.0
diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst
index d29e875..fbb6112 100644
--- a/ANNOUNCE.rst
+++ b/ANNOUNCE.rst
@@ -1,26 +1,28 @@
Hello!
-I'm pleased to announce version 3.11.0a1, the first alpha of the upcoming
-release of branch 3.11 of SQLObject.
-
-I'm pleased to announce version 3.11.0a2, the second alpha of the upcoming
-release of branch 3.11 of SQLObject.
-
-I'm pleased to announce version 3.11.0b1, the first beta of the upcoming
-release of branch 3.11 of SQLObject.
-
-I'm pleased to announce version 3.11.0rc1, the first release candidate
-of the upcoming release of branch 3.11 of SQLObject.
-
-I'm pleased to announce version 3.11.0, the fourth bugfix release of branch
-3.11 of SQLObject.
+I'm pleased to announce version 3.11.0, the first stable release
+of branch 3.11 of SQLObject.
What's new in SQLObject
=======================
-The contributors for this release are ... Thanks!
+Features
+--------
+
+* Continue working on ``SQLRelatedJoin`` aliasing introduced in 3.10.2.
+ When a table joins with itself calling
+ ``relJoinCol.filter(thisClass.q.column)`` raises ``ValueError``
+ hinting that an alias is required for filtering.
+
+* Test that ``idType`` is either ``int`` or ``str``.
+* Added ``sqlmeta.idSize``. This sets the size of integer column ``id``
+ for MySQL and PostgreSQL. Allowed values are ``'TINY'``, ``'SMALL'``,
+ ``'MEDIUM'``, ``'BIG'``, ``None``; default is ``None``. For Postgres
+ mapped to ``smallserial``/``serial``/``bigserial``. For other backends
+ it's currently ignored. Feature request by Meet Gujrathi at
+ https://stackoverflow.com/q/77360075/7976758
For a more complete list, please see the news:
http://sqlobject.org/News.html
@@ -52,7 +54,7 @@ Site:
http://sqlobject.org
Download:
-https://pypi.org/project/SQLObject/3.11.0a0.dev20231105/
+https://pypi.org/project/SQLObject/3.11.0
News and changes:
http://sqlobject.org/News.html
diff --git a/README.rst b/README.rst
index 1ac14c4..8e89539 100644
--- a/README.rst
+++ b/README.rst
@@ -1,5 +1,5 @@
-SQLObject 3.11.0b1
-==================
+SQLObject 3.11.0
+================
SQLObject is a free and open-source (LGPL) Python object-relational
mapper. Your database tables are described as classes, and rows are
diff --git a/devscripts/build-all-docs b/devscripts/build-all-docs
index 4e7aaa5..63d78c2 100755
--- a/devscripts/build-all-docs
+++ b/devscripts/build-all-docs
@@ -10,7 +10,7 @@ cd "`dirname \"$0\"`" &&
PROG_DIR="`pwd`" &&
cd .. &&
-build_docs 3.10.3 &&
+build_docs 3.11.0 &&
build_docs master devel &&
rm -rf docs/html &&
diff --git a/docs/News.rst b/docs/News.rst
index d644a2d..e5aa90e 100644
--- a/docs/News.rst
+++ b/docs/News.rst
@@ -5,8 +5,8 @@ News
.. contents:: Contents:
:backlinks: none
-SQLObject (master)
-==================
+SQLObject 3.11.0
+================
Features
--------
diff --git a/setup.py b/setup.py
index cf98bf0..b1dea83 100755
--- a/setup.py
+++ b/setup.py
@@ -47,7 +47,7 @@ and `GitHub <https://github.com/sqlobject>`_.
""", # noqa: E501 line too long
long_description_content_type="text/x-rst",
classifiers=[
- "Development Status :: 4 - Beta",
+ "Development Status :: 5 - Production/Stable",
"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 eb59522..19a73b7 100644
--- a/sqlobject/__version__.py
+++ b/sqlobject/__version__.py
@@ -1,8 +1,8 @@
-version = '3.11.0b1'
+version = '3.11.0'
major = 3
minor = 11
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/bcc6084516541c73dd8b2e467e30b4ff7118ea82
commit bcc6084516541c73dd8b2e467e30b4ff7118ea82
Author: Oleg Broytman <ph...@ph...>
Date: Sat Nov 11 16:05:59 2023 +0300
Build(devscripts/prerelease): Fix replace expression
Escape a slash.
[skip ci]
diff --git a/devscripts/prerelease b/devscripts/prerelease
index f3f5c21..53e8956 100755
--- a/devscripts/prerelease
+++ b/devscripts/prerelease
@@ -33,7 +33,7 @@ if [ "$state" = alpha ]; then
elif [ "$state" = beta -o "$state" = 'release candidate' ]; then
trove_cls='4 - Beta'
elif [ "$state" = final -o "$state" = post ]; then
- trove_cls='5 - Production/Stable'
+ trove_cls='5 - Production\/Stable'
else
echo "Error: unknown state $state" >&2
exit 1
-----------------------------------------------------------------------
Summary of changes:
ANNOUNCE.rst | 12 ++++++------
README.rst | 2 +-
devscripts/build-all-docs | 2 +-
devscripts/prerelease | 2 +-
docs/News.rst | 5 +++++
setup.py | 2 +-
sqlobject/__version__.py | 6 +++---
7 files changed, 18 insertions(+), 13 deletions(-)
hooks/post-receive
--
SQLObject development repository
|