Skip to content

Commit 84cb74a

Browse files
committed
prepare for 1.0.0
1 parent fdc8a2e commit 84cb74a

5 files changed

Lines changed: 33 additions & 10 deletions

File tree

CHANGES

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,24 @@
1-
# 0.9.2
1+
# 1.0.0
2+
3+
changes since 0.9.2
4+
5+
- Cleanup/modernize the test suite, get working with SQLalchemy 1.0, 1.1 and 1.2 #27
6+
- TextTest failing bug sqlalchemy-1.2 #26
7+
- EscapingTest fail for sqlalchemy==1.2.0b3 bug sqlalchemy-1.2 #25
8+
- test_integrity_error test fail #17
9+
- test_limit_offset_in_unions_from_alias test fail #14
10+
- test_limit_offset_selectable_in_unions test fail #15
11+
- test_order_by_selectable_in_unions test fail #16
12+
- table name quoted wrong #11
13+
- check old todo list if issues are still a problem #22
14+
- test_bound_limit_offset test fail #19
15+
- test_bound_limit test fail #18
16+
- test_bound_offset test fail #20
17+
- fix all temp table related issues #23
18+
- Test suite fails with latest SQLALchemy >= 1.0 bug #1
19+
20+
21+
# 0.9.2
222

323
changes since 0.9.1
424

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
MonetDB dialect for SQLAlchemy
22
==============================
3-
This is the MonetDB dialect driver for SQLAlchemy.
3+
4+
This is the MonetDB dialect driver for SQLAlchemy. It has support for Python 2.7, 3.3+ and even PyPy. It supports
5+
SQLalchemy 1.0, 1.1 and 1.2.
46

57

68
Installation
@@ -27,14 +29,11 @@ To start using this dialect::
2729
MonetDB Lite (experimental)
2830
---------------------------
2931

30-
We also have experimental support for MonetDB Lite!
31-
32-
For this install this dialect with an extra option::
32+
We now have experimental support for MonetDB Lite! Note that this is experimental, and will probably break.
3333

34-
$ pip install sqlalchemy_monetdb[lite]
34+
First you need to manually install MonetDB Lite: https://github.com/hannesmuehleisen/MonetDBLite-Python
3535

36-
37-
Now can start using MonetDB Lite::
36+
To connect to a MonetDBLite database use this syntax::
3837

3938
from sqlalchemy import create_engine
4039
engine = create_engine('monetdb+lite:////tmp/monetdb_lite')
@@ -49,6 +48,7 @@ More info
4948

5049
Development
5150
-----------
51+
5252
.. image:: https://travis-ci.org/gijzelaerr/sqlalchemy-monetdb.png?branch=master
5353
:target: https://travis-ci.org/gijzelaerr/sqlalchemy-monetdb
5454

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup_params = dict(
1515
name="sqlalchemy_monetdb",
16-
version='0.9.3',
16+
version='1.0.0',
1717
description="SQLAlchemy dialect for MonetDB",
1818
author="Gijs Molenaar",
1919
author_email="gijsmolenaar@gmail.com",

test/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+

test/test_suite.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def test_get_temp_table_indexes(self):
3939
@testing.requires.temp_table_reflection
4040
@testing.requires.unique_constraint_reflection
4141
def test_get_temp_table_unique_constraints(self):
42-
# TODO: it looks like MonetDB doesn't show constains for temp tables (yet)
42+
# TODO: it looks like MonetDB doesn't show constrains for temp tables (yet)
4343
return
4444

4545
@classmethod
@@ -200,6 +200,7 @@ def test_group_by_composed(self):
200200
"""
201201
Disable this for now
202202
203+
https://github.com/gijzelaerr/sqlalchemy-monetdb/issues/21
203204
https://groups.google.com/forum/#!topic/sqlalchemy/r4X7ddN4rgA
204205
"""
205206
pass

0 commit comments

Comments
 (0)