Commit c4026af7 authored by phd's avatar phd
Browse files

Release 3.13.1

parent 901e7e13
Loading
Loading
Loading
Loading
+21 −2
Original line number Diff line number Diff line
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
+1 −1
Original line number Diff line number Diff line
@@ -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 &&

+4 −2
Original line number Diff line number Diff line
@@ -5,8 +5,10 @@ News
.. contents:: Contents:
   :backlinks: none

SQLObject development (master)
==============================
SQLObject 3.13.1
================

Released 2025 Dec 08.

Bug fixes
---------
+0 −5
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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)",
Loading