Commit 0db3eeea authored by phd's avatar phd
Browse files

Release 3.12.0.post1

[skip ci]
parent 3f2b254f
Loading
Loading
Loading
Loading
+42 −14
Original line number Diff line number Diff line
Hello!

I'm pleased to announce version 3.12.1a1, the first alpha of the upcoming
release of branch 3.12 of SQLObject.
I'm pleased to announce version 3.12.0.post1, the first post-release
of release 3.12.0 of branch 3.12 of SQLObject.

I'm pleased to announce version 3.12.1a2, the second alpha of the upcoming
release of branch 3.12 of SQLObject.

I'm pleased to announce version 3.12.1b1, the first beta of the upcoming
release of branch 3.12 of SQLObject.
What's new in SQLObject
=======================

I'm pleased to announce version 3.12.1rc1, the first release candidate
of the upcoming release of branch 3.12 of SQLObject.
Drivers
-------

I'm pleased to announce version 3.12.1, the first bugfix release of branch
3.12 of SQLObject.
* Add support for CyMySQL; there're some problems with unicode yet.

* Separate ``psycopg`` and ``psycopg2``;
  ``psycopg`` is actually ``psycopg3`` now; not all tests pass.

What's new in SQLObject
=======================
* Minor fix in getting error code from PyGreSQL.

* Dropped ``oursql``. It wasn't updated in years.

* Dropped ``PySQLite2``. Only builtin ``sqlite3`` is supported.

Tests
-----

* Run tests with Python 3.13.

* Run tests with ``psycopg-c``; not all tests pass.

* Fix ``test_exceptions.py`` under MariaDB, PostgreSQL and SQLite.

* ``py-postgres``: Set ``sslmode`` to ``allow``;
  upstream changed default to ``prefer``.

CI
--

* Run tests with ``PyGreSQL`` on w32, do not ignore errors.

* Skip tests with ``pg8000`` on w32.

* GHActions: Switch to ``setup-miniconda``.

* GHActions: Python 3.13.

Build/release
-------------

The contributors for this release are ... Thanks!
* Release only sdist: wheels do not allow direct links for dependencies.


For a more complete list, please see the news:
@@ -52,7 +80,7 @@ Site:
http://sqlobject.org

Download:
https://pypi.org/project/SQLObject/3.12.1a0.dev20241220/
https://pypi.org/project/SQLObject/3.12.0.post1

News and changes:
http://sqlobject.org/News.html
+2 −2
Original line number Diff line number Diff line
SQLObject 3.12.0
================
SQLObject 3.12.0.post1
======================

SQLObject is a free and open-source (LGPL) Python object-relational
mapper.  Your database tables are described as classes, and rows are
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ cd "`dirname \"$0\"`" &&
PROG_DIR="`pwd`" &&

cd .. &&
build_docs 3.12.0 &&
build_docs 3.12.0.post1 &&
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 (master)
==================
SQLObject 3.12.0.post1
======================

Released 2024 Dec 20.

Build/release
-------------
+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
Loading