Skip to content

Commit

Permalink
Release 3.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
phdru committed Sep 22, 2019
1 parent 6c54d9a commit f31a1bc
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 20 deletions.
41 changes: 26 additions & 15 deletions ANNOUNCE.rst
@@ -1,26 +1,37 @@
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

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.rst
@@ -1,5 +1,5 @@
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
Expand Down
2 changes: 1 addition & 1 deletion devscripts/build-all-docs
Expand Up @@ -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 &&

Expand Down
4 changes: 2 additions & 2 deletions sqlobject/__version__.py
@@ -1,8 +1,8 @@

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)

0 comments on commit f31a1bc

Please sign in to comment.