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 e860578692889bdb61af6734fd7e156026379588 (commit)
via 0cc426a03eca29d93de16cf2adf3da17def04bf0 (commit)
from 98dba3a121452518fcf5c1828043b5db7a91aaa4 (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/e860578692889bdb61af6734fd7e156026379588
commit e860578692889bdb61af6734fd7e156026379588
Author: Oleg Broytman <ph...@ph...>
Date: Sun Jul 31 20:53:21 2016 +0300
Release 3.1.0b1
diff --git a/README.txt b/README.txt
index d4b129a..abe9116 100644
--- a/README.txt
+++ b/README.txt
@@ -1,5 +1,5 @@
-SQLObject 3.1.0
-===============
+SQLObject 3.1.0b1
+=================
Thanks for looking at SQLObject. SQLObject is an object-relational
mapper, i.e., a library that will wrap your database tables in Python
diff --git a/docs/News.txt b/docs/News.txt
index 326a728..c2439c3 100644
--- a/docs/News.txt
+++ b/docs/News.txt
@@ -7,8 +7,10 @@ News
.. _start:
-SQLObject 3.1.0 (master)
-========================
+SQLObject 3.1.0
+===============
+
+Released 31 Jun 2016.
Features
--------
diff --git a/setup.cfg b/setup.cfg
index 0fb1c02..9467786 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -48,9 +48,9 @@ doc-dir = docs/html
make-dirs = 1
## For live documentation:
-doc-dest = scp://web.sourceforge.net:/home/project-web/sqlobject/
+# doc-dest = scp://web.sourceforge.net:/home/project-web/sqlobject/
## For in-development documentation:
-# doc-dest = scp://web.sourceforge.net:/home/project-web/sqlobject/devel/
+doc-dest = scp://web.sourceforge.net:/home/project-web/sqlobject/devel/
[bdist_wheel]
universal = 1
diff --git a/setup.py b/setup.py
index 834893d..309a2e5 100755
--- a/setup.py
+++ b/setup.py
@@ -81,7 +81,8 @@ and `GitHub <https://github.com/sqlobject>`_.
maintainer="Oleg Broytman",
maintainer_email="ph...@ph...",
url="http://sqlobject.org/devel/",
- download_url="https://pypi.python.org/pypi/SQLObject/%s" % version,
+ download_url="https://pypi.python.org/pypi/SQLObject/%sdev-20160731" %
+ version,
license="LGPL",
packages=["sqlobject"] +
['sqlobject.%s' % package for package in subpackages],
diff --git a/sqlobject/__version__.py b/sqlobject/__version__.py
index f1ebb14..d381316 100644
--- a/sqlobject/__version__.py
+++ b/sqlobject/__version__.py
@@ -1,8 +1,8 @@
-version = '3.1.0'
+version = '3.1.0b1'
major = 3
minor = 1
micro = 0
-release_level = 'trunk'
-serial = 0
+release_level = 'beta'
+serial = 1
version_info = (major, minor, micro, release_level, serial)
http://sourceforge.net/p/sqlobject/sqlobject/ci/0cc426a03eca29d93de16cf2adf3da17def04bf0
commit 0cc426a03eca29d93de16cf2adf3da17def04bf0
Author: Oleg Broytman <ph...@ph...>
Date: Sun Jul 31 20:04:24 2016 +0300
Split News.txt into News5.txt
diff --git a/docs/News.txt b/docs/News.txt
index 459cdfc..326a728 100644
--- a/docs/News.txt
+++ b/docs/News.txt
@@ -60,632 +60,9 @@ Documentation
* Documentation is published at http://sqlobject.readthedocs.org/ in
Sphinx format.
-SQLObject 2.2.1
-===============
-
-Released 10 May 2016.
-
-* Fix a bug in sqlbuilder.CONCAT (inherit from SQLExpression).
-
-SQLObject 2.2.0
-===============
-
-Released 8 May 2016.
-
-Features & Interface
---------------------
-
-* Add function col.use_microseconds(True/False). Default is to use
- microseconds (True).
-
-* For MSSQL use datetime2(6) and time(6) columns.
-
-* Columns for ForeignKey are created using idType of the referenced
- table.
-
-Minor features
---------------
-
-* Add sqlbuilder.CONCAT to generate concatenation command (either using
- function CONCAT() or '||' operator).
-
-* Minor refactoring to pave the way to Python 3 was merged from
- `SQLObject 1.6.7`_.
-
-* Document MSSQL server versions -- merged from `SQLObject 1.7.6`_.
-
-Bugfixes
---------
-
-* Fix a bug: mxDateTime doesn't support microseconds; %s in mxDateTime
- format means ticks.
-
-Tests
------
-
-* Speedup SQLite connections in tests -- merged from `SQLObject 1.7.6`_.
-
-* Added new test helper setupCyclicClasses to setup classes with mutual
- references.
-
-SQLObject 2.1.2
-===============
-
-Released 15 Mar 2015.
-
-* Using fdb adapter for Firebird was ported from `SQLObject 1.6.6`_.
-
-SQLObject 2.1.1
-===============
-
-Released 10 Mar 2015.
-
-* Minor fix in PostgresConnection was ported from `SQLObject 1.6.5`_.
-
-SQLObject 2.1.0
-===============
-
-Released 6 Jan 2015.
-
-Minor features
---------------
-
-* In queries generated with SQLObject's tables columns are sorted in the
- order they are declared in the table.
-
-* In queries generated with sqlbuilder's Insert/Update, if values are
- passed using dictionaries, columns are sorted alphabetically.
-
-* Tables in SELECT...FROM clause are sorted alphabetically.
-
-* MySQLConnection, PostgresConnection and SQLiteConnection have got
- a new method listDatabases() that lists databases in the connection
- and returns a list of names.
-
-* MySQLConnection, PostgresConnection and SQLiteConnection have got
- a new method listTables() that returns a list of table names in the database.
-
-SQLObject 2.0.0
-===============
-
-Released 20 Dec 2014.
-
-Features & Interface
---------------------
-
-* DateTimeCol and TimeCol can read and write values with microseconds.
-
- WARNING: microseconds are supported by MariaDB since version 5.3.0 and
- by MySQL since version 5.6.4, and even these versions require special
- handling: columns to store microseconds have to be declared with
- precision 6: TIME(6), DATETIME(6), TIMESTAMP(6). SQLObject does the
- right thing when creating a new database but existing databases have
- to be changed: run something like
- ``ALTER TABLE name MODIFY COLUMN col TIME(6)`` for every column that
- you want to store microseconds.
-
- For MSSQL use datetime2(6) and time(6) columns. They are available
- since MS SQL Server 2008.
-
- WARNING: backward compatibility problem! Date/Time columns created
- with microseconds cannot be read back from SQLite databases (and
- perhaps other backends) with versions of SQLObject older than 1.7.
-
-Minor features
---------------
-
-* PostgresConnection, when used with fromDatabase=True, sets alternateID
- for unique columns.
-
-Development
------------
-
-* Development was switched from Subversion to git.
-
-Documentation
--------------
-
-* Old news were restored back to version 0.2.1.
-
-* News.txt was split into 5 small files.
-
-SQLObject 1.7.6
-===============
-
-* Minor refactoring to pave the way to Python 3 was merged from
- `SQLObject 1.6.7`_.
-
-* Document MSSQL server versions -- merged from `SQLObject 1.6.7`_.
-
-* Speedup SQLite connections in tests -- merged from `SQLObject 1.6.7`_.
-
-SQLObject 1.7.5
-===============
-
-Released 15 Mar 2015.
-
-* Using fdb adapter for Firebird was ported from `SQLObject 1.6.6`_.
-
-SQLObject 1.7.4
-===============
-
-Released 10 Mar 2015.
-
-* Minor fix in PostgresConnection was ported from `SQLObject 1.6.5`_.
-
-SQLObject 1.7.3
-===============
-
-Released 18 Dec 2014.
-
-* Documentation updates and setup.py change were ported
- from `SQLObject 1.5.6`_.
-
-SQLObject 1.7.2
-===============
-
-Released 14 Dec 2014.
-
-* Fix a bug: zero-pad microseconds on the right, not on the left; 0.0835
- seconds means 83500 microseconds.
-
-SQLObject 1.7.1
-===============
-
-Released 11 Dec 2014.
-
-* Documentation updates and setuptools change were ported
- from `SQLObject 1.5.5`_.
-
-SQLObject 1.7.0
-===============
-
-Released 8 Dec 2014.
-
-Features & Interface
---------------------
-
-* Python 2.5 is no longer supported. The minimal supported version is
- Python 2.6.
-
-* DateTimeCol and TimeCol can read values with microseconds (created by
- SQLObject 2.0) but do not write microseconds back.
-
-Minor features
---------------
-
-* Upgrade ez_setup to 2.2.
-
-Bugfixes
---------
-
-* Thre bugfixes were ported from `SQLObject 1.5.2`_, `SQLObject 1.5.3`_
- and `SQLObject 1.5.4`_.
-
-SQLObject 1.6.7
-===============
-
-* Minor refactoring to pave the way to Python 3: replace calls like
- ``unicode(data, encoding)`` with ``data.decode(encoding)``.
-
-* Document MSSQL server versions.
-
-* Minor fix in HashCol.
-
-* Speedup SQLite connections in tests.
-
-SQLObject 1.6.6
-===============
-
-Released 15 Mar 2015.
-
-* Use fdb adapter for Firebird.
-
-SQLObject 1.6.5
-===============
-
-Released 10 Mar 2015.
-
-* Minor fix in PostgresConnection: close the cursor and connection
- in _createOrDropDatabase even after an error.
-
-SQLObject 1.6.4
-===============
-
-Released 18 Dec 2014.
-
-* Documentation updates and setup.py change were ported
- from `SQLObject 1.5.6`_.
-
-SQLObject 1.6.3
-===============
-
-Released 11 Dec 2014.
-
-* Documentation updates and setuptools change were ported
- from `SQLObject 1.5.5`_.
-
-SQLObject 1.6.2
-===============
-
-Released 8 Dec 2014.
-
-* A bugfix was ported from `SQLObject 1.5.4`_.
-
-SQLObject 1.6.1
-===============
-
-Released 26 Oct 2014.
-
-* A bugfix was ported from `SQLObject 1.5.3`_.
-
-SQLObject 1.6.0
-===============
-
-Released 15 May 2014.
-
-Features & Interface
---------------------
-
-* Python 2.4 is no longer supported. The minimal supported version is
- Python 2.5.
-
-* Support for Python 2.5 is declared obsolete and will be removed
- in the next release.
-
-Minor features
---------------
-
-* Upgrade ez_setup to 1.4.2.
-
-Bugfixes
---------
-
-* A bugfix was ported from `SQLObject 1.5.2`_.
-
-Development
------------
-
-* Development switched from Subvesion to git.
-
-SQLObject 1.5.6
-===============
-
-Released 18 Dec 2014.
-
-* Extend setup.py: include docs and tests into the egg.
-
-SQLObject 1.5.5
-===============
-
-Released 11 Dec 2014.
-
-* Documentation update: change URLs for development with git, add
- Travis CI build status image.
-
-* Extend sdist: include everything into source distribution.
-
-SQLObject 1.5.4
-===============
-
-Released 8 Dec 2014.
-
-* Fix a minor bug in MSSQLConnection: do not override callable server_version
- with a non-callable.
-
-SQLObject 1.5.3
-===============
-
-Released 26 Oct 2014.
-
-* Allow unicode in .orderBy(u'-column').
-
-Development
------------
-
-* Development switched from Subvesion to git.
-
-SQLObject 1.5.2
-===============
-
-Released 13 Apr 2014.
-
-* Adapt duplicate error message strings for SQLite 3.8.
-
-SQLObject 1.5.1
-===============
-
-Released 15 Dec 2013.
-
-* SQLiteConnection.close() now closes and reopens a connection
- to in-memory database.
-
-SQLObject 1.5.0
-===============
-
-Released 5 Oct 2013.
-
-Features & Interface
---------------------
-
-* Helpers for class Outer were changed to lookup columns in table's
- declarations.
-
-* Support for Python 2.4 is declared obsolete and will be removed
- in the next release.
-
-Minor features
---------------
-
-* When a PostgresConnection raises an exception the instance has
- code/error attributes copied from psycopg2's pgcode/pgerror attributes.
-
-* Encode unicode enum values to str.
-
-* Removed setDeprecationLevel from the list of public functions.
-
-* A number of fixes for tests.
-
-Bugfixes
---------
-
-* A bug was fixed in DBConnection.close(); close() doesn't raise
- an UnboundLocalError if connection pool is empty.
-
-* Fixed parameters for pymssql.
-
-Documentation
--------------
-
-* GNU LGPL text was added as docs/LICENSE file.
-
-* Old FSF address was changed to the new one.
-
-SQLObject 1.4.1
-===============
-
-Released 26 May 2013.
-
-* A few bugfixes were ported from `SQLObject 1.3.3`_.
-
-SQLObject 1.4.0
-===============
-
... 352 lines suppressed ...
hooks/post-receive
--
SQLObject development repository
|