Commit 73ffdca9 authored by phd's avatar phd
Browse files

Release 3.9.0

parent 27239030
Loading
Loading
Loading
Loading
+32 −16
Original line number Diff line number Diff line
Hello!

I'm pleased to announce version 3.8.1a1, the first alpha of the upcoming
release of branch 3.8 of SQLObject.
I'm pleased to announce version 3.9.0, the first release
of branch 3.9 of SQLObject.

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

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

I'm pleased to announce version 3.8.1rc1, the first release candidate
of the upcoming release of branch 3.8 of SQLObject.
Contributors for this release are:

I'm pleased to announce version 3.8.2, the first bugfix release of branch
3.8 of SQLObject.
+ Michael S. Root, Ameya Bapat - ``JSONCol``;

+ Jerry Nance - reported a bug with ``DateTime`` from ``Zope``.

What's new in SQLObject
=======================
Features
--------

* Add ``JSONCol``: a universal json column that converts simple Python objects
  (None, bool, int, float, long, dict, list, str/unicode to/from JSON using
  json.dumps/loads. A subclass of StringCol. Requires ``VARCHAR``/``TEXT``
  columns at backends, doesn't work with ``JSON`` columns.

* Extend/fix support for ``DateTime`` from ``Zope``.

* Drop support for very old version of ``mxDateTime``
  without ``mx.`` namespace.

Drivers
-------

* Support `mariadb <https://pypi.org/project/mariadb/>`_.

CI
--

Contributors for this release are 
* Run tests with Python 3.9 at Travis and AppVeyor.

For a more complete list, please see the news:
http://sqlobject.org/News.html
@@ -32,8 +47,9 @@ SQLObject is an object-relational mapper. Your database tables are described
as classes, and rows are instances of those classes.  SQLObject is meant to be
easy to use and quick to get started with.

SQLObject supports a number of backends: MySQL, PostgreSQL, SQLite,
Firebird, Sybase, MSSQL and MaxDB (also known as SAPDB).
It currently supports MySQL, PostgreSQL and SQLite; connections to other
backends - Firebird, Sybase, MSSQL and MaxDB (also known as SAPDB) - are
lesser debugged).

Python 2.7 or 3.4+ is required.

@@ -51,7 +67,7 @@ Mailing list:
https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss

Download:
https://pypi.org/project/SQLObject/3.8.2a0.dev20201001/
https://pypi.org/project/SQLObject/3.9.0

News and changes:
http://sqlobject.org/News.html
+7 −5
Original line number Diff line number Diff line
SQLObject 3.8.2a0
=================
SQLObject 3.9.0
===============

Thanks for looking at SQLObject.  SQLObject is an object-relational
mapper, i.e., a library that will wrap your database tables in Python
classes, and your rows in Python instances.

It currently supports MySQL through the `MySQLdb` package, PostgreSQL
through the `psycopg` package, SQLite, Firebird, MaxDB (SAP DB), MS SQL,
and Sybase.  Python 2.7 or 3.4+ is required.
It currently supports MySQL, PostgreSQL and SQLite; connections to other
backends - Firebird, Sybase, MSSQL and MaxDB (also known as SAPDB) - are
lesser debugged).

Python 2.7 or 3.4+ is required.

For more information please see the documentation in
`<docs/SQLObject.rst>`_, or online at http://sqlobject.org/
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ cd "`dirname \"$0\"`" &&
PROG_DIR="`pwd`" &&

cd .. &&
build_docs 3.8.1 &&
build_docs 3.9.0 &&
build_docs master devel &&
rm -rf docs/html &&

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

SQLObject (master)
==================
SQLObject 3.9.0
===============

Released 2020 Dec 15.

Features
--------
@@ -24,7 +26,7 @@ Features
Drivers
-------

* Support ``mariadb``.
* Support `mariadb <https://pypi.org/project/mariadb/>`_.

CI
--
+3 −3
Original line number Diff line number Diff line

version = '3.8.1'
version = '3.9.0'
major = 3
minor = 8
micro = 1
minor = 9
micro = 0
release_level = 'final'
serial = 0
version_info = (major, minor, micro, release_level, serial)