This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SQLObject development repository".
The branch, master has been updated
via 928cf63ac5742258e3789f876392eeac52b2bc45 (commit)
from ac1e0a9c90126523b6b4d4b82f5783eecb03d620 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceforge.net/p/sqlobject/sqlobject/ci/928cf63ac5742258e3789f876392eeac52b2bc45
commit 928cf63ac5742258e3789f876392eeac52b2bc45
Author: Oleg Broytman <ph...@ph...>
Date: Sat Feb 2 18:51:06 2019 +0300
Release 3.7.1
diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst
index d0fdf39..cab716c 100644
--- a/ANNOUNCE.rst
+++ b/ANNOUNCE.rst
@@ -1,28 +1,35 @@
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.1, the first 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.
+Contributor for this release is Neil Muller.
-I'm pleased to announce version 3.8.0, the first stable release of branch
-3.8 of SQLObject.
+Bug fixes
+---------
-I'm pleased to announce version 3.8.1, the first bugfix release of branch
-3.8 of SQLObject.
+* Fixed a unicode problem in the latest mysqlclient.
+Documentation
+-------------
-What's new in SQLObject
-=======================
+* Exclude sqlmeta members from some of the api docs.
+ The inclusion of of these sqlmeta members in these files breaks
+ reproducible builds.
-Contributor for this release is Neil Muller.
+Development
+-----------
+
+* Source code was made flake8-clean using the latest flake8.
+
+CI
+--
+
+* Run tests with Python 3.7.
For a more complete list, please see the news:
http://sqlobject.org/News.html
@@ -54,7 +61,7 @@ Mailing list:
https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss
Download:
-https://pypi.org/project/SQLObject/3.8.0a0.dev20180606/
+https://pypi.org/project/SQLObject/3.7.1/
News and changes:
http://sqlobject.org/News.html
diff --git a/README.rst b/README.rst
index 3e96729..13c8ff2 100644
--- a/README.rst
+++ b/README.rst
@@ -1,4 +1,4 @@
-SQLObject 3.8.0
+SQLObject 3.7.1
===============
Thanks for looking at SQLObject. SQLObject is an object-relational
diff --git a/devscripts/build-all-docs b/devscripts/build-all-docs
index 233c068..3f90528 100755
--- a/devscripts/build-all-docs
+++ b/devscripts/build-all-docs
@@ -11,7 +11,7 @@ cd "$PROG_DIR" &&
PROG_DIR="`pwd`" &&
cd "$PROG_DIR"/SQLObject &&
-build_docs 3.7.0 &&
+build_docs 3.7.1 &&
build_docs master devel &&
rm -rf docs/html &&
diff --git a/docs/News.rst b/docs/News.rst
index 7d1d946..1b96883 100644
--- a/docs/News.rst
+++ b/docs/News.rst
@@ -8,6 +8,11 @@ News
SQLObject 3.8.0 (master)
========================
+SQLObject 3.7.1
+===============
+
+Released 2 Feb 2019.
+
Bug fixes
---------
diff --git a/setup.cfg b/setup.cfg
index af28274..2b534b3 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -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,validators.py
# E305: expected 2 blank lines after class or function definition, found 1
diff --git a/sqlobject/__version__.py b/sqlobject/__version__.py
index a21e936..6e6740f 100644
--- a/sqlobject/__version__.py
+++ b/sqlobject/__version__.py
@@ -1,8 +1,8 @@
-version = '3.8.0'
+version = '3.7.1'
major = 3
-minor = 8
-micro = 0
-release_level = 'dev'
+minor = 7
+micro = 1
+release_level = 'final'
serial = 0
version_info = (major, minor, micro, release_level, serial)
-----------------------------------------------------------------------
Summary of changes:
ANNOUNCE.rst | 39 +++++++++++++++++++++++----------------
README.rst | 2 +-
devscripts/build-all-docs | 2 +-
docs/News.rst | 5 +++++
setup.cfg | 5 -----
sqlobject/__version__.py | 8 ++++----
6 files changed, 34 insertions(+), 27 deletions(-)
hooks/post-receive
--
SQLObject development repository
|