Commit b0b1c9c3 authored by phd's avatar phd
Browse files

Release 3.8.0

parent 0e6ca33c
Loading
Loading
Loading
Loading
+29 −16
Original line number Diff line number Diff line
Hello!

I'm pleased to announce version 3.8.0a1, the first alpha of the upcoming
release of branch 3.8 of SQLObject.
I'm pleased to announce version 3.8.0, the first stable release of branch
3.8 of SQLObject.

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

I'm pleased to announce version 3.8.0b1, 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.0rc1, the first release candidate
of the upcoming release of branch 3.8 of SQLObject.
Features
--------

I'm pleased to announce version 3.8.0, the first stable release of branch
3.8 of SQLObject.
* Add driver ``supersqlite``. Not all tests are passing
  so the driver isn't added to the list of default drivers.

I'm pleased to announce version 3.8.1, the first bugfix release of branch
3.8 of SQLObject.
Minor features
--------------

* Improve sqlrepr'ing ``ALL/ANY/SOME()``: always put the expression
  at the right side of the comparison operation.

What's new in SQLObject
=======================
Bug fixes
---------

* Fixed a bug in cascade deletion/nullification.

* Fixed a bug in ``PostgresConnection.columnsFromSchema``:
  PostgreSQL 12 removed outdated catalog attribute
  ``pg_catalog.pg_attrdef.adsrc``.

* Fixed a bug working with microseconds in Time columns.

CI
--

* Run tests with Python 3.8 at Travis CI.

Contributors for this release are 
Contributors for this release are Andrew Trusty, Marco Sirabella and darix.

For a more complete list, please see the news:
http://sqlobject.org/News.html
@@ -54,7 +67,7 @@ Mailing list:
https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss

Download:
https://pypi.org/project/SQLObject/3.8.0a0.dev20190501/
https://pypi.org/project/SQLObject/3.8.0

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

Thanks for looking at SQLObject.  SQLObject is an object-relational
mapper, i.e., a library that will wrap your database tables in Python
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ cd "`dirname \"$0\"`" &&
PROG_DIR="`pwd`" &&

cd .. &&
build_docs 3.7.3 &&
build_docs 3.8.0 &&
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.8.0
===============

Released 7 Dec 2019.

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

version = '3.7.3'
version = '3.8.0'
major = 3
minor = 7
micro = 3
minor = 8
micro = 0
release_level = 'final'
serial = 0
version_info = (major, minor, micro, release_level, serial)