Skip to content

Commit 2085abe

Browse files
committed
Release 3.3.0
1 parent 83dc573 commit 2085abe

7 files changed

Lines changed: 49 additions & 26 deletions

File tree

ANNOUNCE.rst

Lines changed: 37 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,50 @@
11
Hello!
22

3-
I'm pleased to announce version 3.3.0a1, the first alpha of the upcoming
4-
release of branch 3.2 of SQLObject.
3+
I'm pleased to announce version 3.3.0, the first stable release of branch
4+
3.3 of SQLObject.
55

6-
I'm pleased to announce version 3.3.0a2, the second alpha of the upcoming
7-
release of branch 3.2 of SQLObject.
86

9-
I'm pleased to announce version 3.3.0b1, the first beta of the upcoming
10-
release of branch 3.2 of SQLObject.
7+
What's new in SQLObject
8+
=======================
119

12-
I'm pleased to announce version 3.3.0rc1, the first release candidate
13-
of the upcoming release of branch 3.2 of SQLObject.
10+
Features
11+
--------
1412

15-
I'm pleased to announce version 3.3.0, the first stable release of branch
16-
3.2 of SQLObject.
13+
* Support for Python 2.6 is declared obsolete and will be removed
14+
in the next release.
1715

18-
I'm pleased to announce version 3.3.1, the first bugfix release of branch
19-
3.2 of SQLObject.
16+
Minor features
17+
--------------
2018

19+
* Convert scripts repository to devscripts subdirectory.
20+
Some of thses scripts are version-dependent so it's better to have them
21+
in the main repo.
2122

22-
What's new in SQLObject
23-
=======================
23+
* Test for __nonzero__ under Python 2, __bool__ under Python 3 in BoolCol.
24+
25+
Drivers (work in progress)
26+
--------------------------
27+
28+
* Add support for PyODBC and PyPyODBC (pure-python ODBC DB API driver) for
29+
MySQL, PostgreSQL and MS SQL. Driver names are ``pyodbc``, ``pypyodbc``
30+
or ``odbc`` (try ``pyodbc`` and ``pypyodbc``). There are some problems
31+
with pyodbc and many problems with pypyodbc.
32+
33+
Documentation
34+
-------------
35+
36+
* Stop updating http://sqlobject.readthedocs.org/ - it's enough to have
37+
http://sqlobject.org/
38+
39+
Tests
40+
-----
41+
42+
* Run tests at Travis CI and AppVeyor with Python 3.6, x86 and x64.
2443

44+
* Stop running tests at Travis with Python 2.6.
2545

26-
Contributor for this release is
46+
* Stop running tests at AppVeyor with pymssql - too many timeouts and
47+
problems.
2748

2849
For a more complete list, please see the news:
2950
http://sqlobject.org/News.html
@@ -55,7 +76,7 @@ Mailing list:
5576
https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss
5677

5778
Download:
58-
https://pypi.python.org/pypi/SQLObject/3.3.0a0.dev20170110
79+
https://pypi.python.org/pypi/SQLObject/3.3.0
5980

6081
News and changes:
6182
http://sqlobject.org/News.html

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
SQLObject 3.3.0a0
2-
=================
1+
SQLObject 3.3.0
2+
===============
33

44
Thanks for looking at SQLObject. SQLObject is an object-relational
55
mapper, i.e., a library that will wrap your database tables in Python

devscripts/build-all-docs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cd "$PROG_DIR" &&
1111
PROG_DIR="`pwd`" &&
1212

1313
cd "$PROG_DIR"/SQLObject &&
14-
build_docs 3.2.0 &&
14+
build_docs 3.3.0 &&
1515
build_docs master devel &&
1616

1717
cd ../SQLObject-docs &&

docs/News.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ News
77

88
.. _start:
99

10-
SQLObject 3.3.0 (master)
11-
========================
10+
SQLObject 3.3.0
11+
===============
12+
13+
Released 7 May 2017.
1214

1315
Features
1416
--------

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[egg_info]
2-
tag_build = dev
3-
tag_date = 1
2+
tag_build =
3+
tag_date = 0
44
tag_svn_revision = 0
55

66
[flake8]

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
:target: https://travis-ci.org/sqlobject/sqlobject
7070
""",
7171
classifiers=[
72-
"Development Status :: 3 - Alpha",
72+
"Development Status :: 5 - Production/Stable",
7373
"Intended Audience :: Developers",
7474
"License :: OSI Approved :: "
7575
"GNU Library or Lesser General Public License (LGPL)",
@@ -89,7 +89,7 @@
8989
author_email="ianb@colorstudy.com",
9090
maintainer="Oleg Broytman",
9191
maintainer_email="phd@phdru.name",
92-
url="http://sqlobject.org/devel/",
92+
url="http://sqlobject.org/",
9393
download_url="https://pypi.python.org/pypi/SQLObject/%s" % version,
9494
license="LGPL",
9595
packages=["sqlobject"] +

sqlobject/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
major = 3
44
minor = 3
55
micro = 0
6-
release_level = 'alpha'
6+
release_level = 'final'
77
serial = 0
88
version_info = (major, minor, micro, release_level, serial)

0 commit comments

Comments
 (0)