Commit fd927aba authored by phd's avatar phd
Browse files

Release 3.12.0b1

parent e4d9aadd
Loading
Loading
Loading
Loading
+36 −14
Original line number Diff line number Diff line
Hello!

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.12.0b1, the first beta of the upcoming
release of branch 3.12 of SQLObject.

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

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

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

I'm pleased to announce version 3.11.1, the first bugfix release of branch
3.11 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.

The contributors for this release are ... Thanks!
* GHActions: Switch to ``setup-miniconda``.

* GHActions: Python 3.13.

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

Download:
https://pypi.org/project/SQLObject/3.11.1a0.dev20231112/
https://pypi.org/project/SQLObject/3.12.0b1

News and changes:
http://sqlobject.org/News.html
+1 −1
Original line number Diff line number Diff line
SQLObject 3.11.1a0
SQLObject 3.12.0b1
==================

SQLObject is a free and open-source (LGPL) Python object-relational
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ News
.. contents:: Contents:
   :backlinks: none

SQLObject (master)
SQLObject 3.12.0b1
==================

Drivers
+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 :: 4 - Beta",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: "
        "GNU Library or Lesser General Public License (LGPL)",
Loading