Skip to content

Commit

Permalink
Bump version to 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Pat Patterson committed Dec 16, 2015
1 parent 1789264 commit c1a8545
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -2,3 +2,5 @@ build
dist
forcefdw.py~
MANIFEST
setup.cfg
ForceFDW.egg-info
5 changes: 5 additions & 0 deletions README.md
Expand Up @@ -3,6 +3,7 @@ Database.com FDW for PostgreSQL

This Python module implements the `multicorn.ForeignDataWrapper` interface to allow you to create foreign tables in PostgreSQL 9.1+ that map to sobjects in database.com/Force.com. Column names and qualifiers (e.g. `Name LIKE 'P%'`) are passed to database.com to minimize the amount of data on the wire.

* Version 0.0.4 updates yajl-py refs to prevent YajlContentHandler is not defined issue with latest yajl and yajl-py
* Version 0.0.3 removes the requirement for column names to be a case-sensitive match for the database.com field names.
* Version 0.0.2 switched to using the yajl-py streaming JSON parser to avoid reading the entire response from database.com into memory at once.

Expand Down Expand Up @@ -150,3 +151,7 @@ Installation
Total runtime: 431.941 ms
(8 rows)

License
-------

3-clause BSD. See license file.
2 changes: 1 addition & 1 deletion __init__.py
@@ -1,3 +1,3 @@
# ForceFDW - A PostgreSQL Foreign Data Wrapper for Database.com/Force.com

__version__ = '0.0.3'
__version__ = '0.0.4'
2 changes: 1 addition & 1 deletion setup.py
@@ -1,6 +1,6 @@
from distutils.core import setup
setup(name='ForceFDW',
version='0.0.3',
version='0.0.4',
description='Database.com FDW for PostgreSQL',
author='Pat Patterson',
author_email='ppatterson@salesforce.com',
Expand Down

0 comments on commit c1a8545

Please sign in to comment.