Commit f31a1bc9 authored by phd's avatar phd
Browse files

Release 3.7.3

parent 6c54d9a0
Loading
Loading
Loading
Loading
+26 −15
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.7.3, a bugfix release of branch
3.7 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.
Bug fixes
---------

I'm pleased to announce version 3.8.0, the first stable release of branch
3.8 of SQLObject.
* Avoid excessive parentheses around ``ALL/ANY/SOME()``.

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

* Add tests for cascade deletion.

What's new in SQLObject
=======================
* Add tests for ``sqlbuilder.ALL/ANY/SOME()``.

* Fix calls to ``pytest.mark.skipif`` - make conditions bool instead of str.

* Fix module-level calls to ``pytest.mark.skip`` - add reasons.

* Fix escape sequences ``'\%'`` -> ``'\\%'``.

CI
--

* Reduce the number of virtual machines/containers:
  one OS, one DB, one python version, many drivers per VM.

* Fix sqlite test under Python 3.7+ at AppVeyor.

Contributors for this release are 

@@ -54,7 +65,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.7.3

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

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.2 &&
build_docs 3.7.3 &&
build_docs master devel &&
rm -rf docs/html &&

+2 −2
Original line number Diff line number Diff line

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