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 847875ade0f1af75c95ed9f9f3546a49b23204cd (commit)
via c4026af7c94274107bb1550a4bb482d9abf628b9 (commit)
via 901e7e13dbe3113fd6d1589d6c13321565d7031b (commit)
via 2402bfd127a490aad486e1d247e58cfceede3fc0 (commit)
via 7fa955ace8ece7fd1e2635c9c993494508d3757e (commit)
from e9561de92bdd8c2fd2b30ed19905dc49ff12f918 (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/847875ade0f1af75c95ed9f9f3546a49b23204cd
commit 847875ade0f1af75c95ed9f9f3546a49b23204cd
Author: Oleg Broytman <ph...@ph...>
Date: Mon Dec 8 22:25:03 2025 +0300
Build: Prepare for the next release
[skip ci]
diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst
index 7088f66..b1d6645 100644
--- a/ANNOUNCE.rst
+++ b/ANNOUNCE.rst
@@ -1,6 +1,6 @@
Hello!
-I'm pleased to announce version 3.13.1, the first bugfix release of the
+I'm pleased to announce version 3.13.2a0, the 2nd bugfix of the
branch 3.13 of SQLObject.
@@ -9,35 +9,6 @@ What's new in SQLObject
The contributors for this release are:
-* Igor Yudytskiy. Thanks for PR #194:
- fix: connect to old mssql versions via set tds_version uri parameter.
-
-* Dave Mulligan fixed #195: Minor ``NameError`` in ``pgconnection.py``
- when using ``psycopg`` version 1 with a non-default port. Thanks!
-
-* Chris Kauffman found a minor bug in ``UuidValidator``.
-
-* GH user ghaushe-ampere. Thanks for finding an obscure bug!
-
-Bug fixes
----------
-
-* ``UuidValidator.from_python()`` now accepts strings as a valid input.
- This fixes #199.
-
-* Fixed #197: a bug in ``dbconnection.ConnectionURIOpener.registerConnection``
- triggered by non-empty instance's ``name``. The bug was inserted in 2004 so
- it seems nobody ever used named instances. Fixed anyway.
-
-* Fixed #195: Minor ``NameError`` in ``pgconnection.py``
- when using ``psycopg`` version 1 with a non-default port.
-
-Tests
------
-
-* Tested with Python 3.14.
-
-* Run tests with source-only (non-binary) ``psycopg`` and ``psycopg2``.
For a more complete list, please see the news:
http://sqlobject.org/News.html
@@ -68,7 +39,7 @@ Site:
http://sqlobject.org
Download:
-https://pypi.org/project/SQLObject/3.13.1
+https://pypi.org/project/SQLObject/3.13.2a0.dev20251208/
News and changes:
http://sqlobject.org/News.html
diff --git a/README.rst b/README.rst
index 157519a..cf8a985 100644
--- a/README.rst
+++ b/README.rst
@@ -1,5 +1,5 @@
-SQLObject 3.13.1
-================
+SQLObject 3.13.2a0
+==================
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 59cd596..e01b137 100644
--- a/docs/News.rst
+++ b/docs/News.rst
@@ -5,6 +5,9 @@ News
.. contents:: Contents:
:backlinks: none
+SQLObject development (master)
+==============================
+
SQLObject 3.13.1
================
diff --git a/setup.cfg b/setup.cfg
index 43bae0f..461bc50 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,6 +4,11 @@ universal = 1
[easy_install]
optimize = 2
+[egg_info]
+tag_build =
+tag_date = 0
+tag_svn_revision = 0
+
[flake8]
exclude = .git,.tox,docs/europython/*.py
# E305: expected 2 blank lines after class or function definition, found 1
diff --git a/setup.py b/setup.py
index 8d37606..9158ff5 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/c4026af7c94274107bb1550a4bb482d9abf628b9
commit c4026af7c94274107bb1550a4bb482d9abf628b9
Author: Oleg Broytman <ph...@ph...>
Date: Mon Dec 8 22:15:51 2025 +0300
Release 3.13.1
diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst
index 9220969..7088f66 100644
--- a/ANNOUNCE.rst
+++ b/ANNOUNCE.rst
@@ -1,6 +1,6 @@
Hello!
-I'm pleased to announce version 3.13.1, the first bugfix of the
+I'm pleased to announce version 3.13.1, the first bugfix release of the
branch 3.13 of SQLObject.
@@ -19,6 +19,25 @@ The contributors for this release are:
* GH user ghaushe-ampere. Thanks for finding an obscure bug!
+Bug fixes
+---------
+
+* ``UuidValidator.from_python()`` now accepts strings as a valid input.
+ This fixes #199.
+
+* Fixed #197: a bug in ``dbconnection.ConnectionURIOpener.registerConnection``
+ triggered by non-empty instance's ``name``. The bug was inserted in 2004 so
+ it seems nobody ever used named instances. Fixed anyway.
+
+* Fixed #195: Minor ``NameError`` in ``pgconnection.py``
+ when using ``psycopg`` version 1 with a non-default port.
+
+Tests
+-----
+
+* Tested with Python 3.14.
+
+* Run tests with source-only (non-binary) ``psycopg`` and ``psycopg2``.
For a more complete list, please see the news:
http://sqlobject.org/News.html
@@ -49,7 +68,7 @@ Site:
http://sqlobject.org
Download:
-https://pypi.org/project/SQLObject/3.13.1a0.dev20251124/
+https://pypi.org/project/SQLObject/3.13.1
News and changes:
http://sqlobject.org/News.html
diff --git a/devscripts/build-all-docs b/devscripts/build-all-docs
index 3e3cda0..62020c9 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.13.0 &&
+build_docs 3.13.1 &&
build_docs master devel &&
rm -rf docs/html &&
diff --git a/docs/News.rst b/docs/News.rst
index 96c5f77..59cd596 100644
--- a/docs/News.rst
+++ b/docs/News.rst
@@ -5,8 +5,10 @@ News
.. contents:: Contents:
:backlinks: none
-SQLObject development (master)
-==============================
+SQLObject 3.13.1
+================
+
+Released 2025 Dec 08.
Bug fixes
---------
diff --git a/setup.cfg b/setup.cfg
index 461bc50..43bae0f 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,11 +4,6 @@ universal = 1
[easy_install]
optimize = 2
-[egg_info]
-tag_build =
-tag_date = 0
-tag_svn_revision = 0
-
[flake8]
exclude = .git,.tox,docs/europython/*.py
# E305: expected 2 blank lines after class or function definition, found 1
diff --git a/setup.py b/setup.py
index 9158ff5..8d37606 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 :: 3 - Alpha",
+ "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 44d9bc7..37af2a9 100644
--- a/sqlobject/__version__.py
+++ b/sqlobject/__version__.py
@@ -1,8 +1,8 @@
-version = '3.13.1b1'
+version = '3.13.1'
major = 3
minor = 13
micro = 1
-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/901e7e13dbe3113fd6d1589d6c13321565d7031b
commit 901e7e13dbe3113fd6d1589d6c13321565d7031b
Author: Oleg Broytman <ph...@ph...>
Date: Fri Nov 28 23:46:01 2025 +0300
Tests(tox): Run tests with `psycopg2-binary` under Py 3.14
diff --git a/tox.ini b/tox.ini
index 032df07..04bc01f 100644
--- a/tox.ini
+++ b/tox.ini
@@ -604,7 +604,7 @@ commands =
easy_install -i https://downloads.egenix.com/python/index/ucs2/ egenix-mx-base
{[psycopg2-binary-w32]commands}
-[testenv:py3{4,5,6,7,9,10,11,12,13}-postgres-psycopg2-binary-w32]
+[testenv:py3{4,5,6,7,9,10,11,12,13,14}-postgres-psycopg2-binary-w32]
platform = win32
commands = {[psycopg2-binary-w32]commands}
http://sourceforge.net/p/sqlobject/sqlobject/ci/2402bfd127a490aad486e1d247e58cfceede3fc0
commit 2402bfd127a490aad486e1d247e58cfceede3fc0
Author: Oleg Broytman <ph...@ph...>
Date: Fri Nov 28 23:45:28 2025 +0300
CI(GHActions): Upgrade `checkout` and `setup-python` actions
diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml
index 54f2658..5c2b60c 100644
--- a/.github/workflows/run-tests.yaml
+++ b/.github/workflows/run-tests.yaml
@@ -42,8 +42,8 @@ jobs:
if: ${{ runner.os == 'Windows' }}
# Setup Python/pip
- - uses: actions/checkout@v4
- - uses: conda-incubator/setup-miniconda@v3
+ - uses: actions/checkout@v5
+ - uses: conda-incubator/setup-miniconda@v3.2.0
with:
channels: conda-forge, conda-forge/label/python_rc
miniforge-version: latest
http://sourceforge.net/p/sqlobject/sqlobject/ci/7fa955ace8ece7fd1e2635c9c993494508d3757e
commit 7fa955ace8ece7fd1e2635c9c993494508d3757e
Author: Oleg Broytman <ph...@ph...>
Date: Fri Nov 28 23:19:42 2025 +0300
Build(devscripts/release): Fix `.git/objects` permissions
[skip ci]
diff --git a/devscripts/release b/devscripts/release
index 664b68b..44ad33a 100755
--- a/devscripts/release
+++ b/devscripts/release
@@ -3,6 +3,7 @@
cd "`dirname \"$0\"`"/.. &&
umask 022 &&
chmod -R a+rX . &&
+find .git/objects -type f -exec chmod u=r,go= '{}' \+ &&
set-commit-date.py &&
devscripts/build-docs &&
-----------------------------------------------------------------------
Summary of changes:
.github/workflows/run-tests.yaml | 4 ++--
ANNOUNCE.rst | 14 ++------------
README.rst | 4 ++--
devscripts/build-all-docs | 2 +-
devscripts/release | 1 +
docs/News.rst | 5 +++++
sqlobject/__version__.py | 6 +++---
tox.ini | 2 +-
8 files changed, 17 insertions(+), 21 deletions(-)
hooks/post-receive
--
SQLObject development repository
|