diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index f1709a7..9f389ac 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @palewire @gordonje +* @palewire diff --git a/postgres_copy/__init__.py b/postgres_copy/__init__.py index 932f541..f640a3a 100644 --- a/postgres_copy/__init__.py +++ b/postgres_copy/__init__.py @@ -3,7 +3,7 @@ from .copy_from import CopyMapping from .copy_to import SQLCopyToCompiler, CopyToQuery from .managers import CopyManager, CopyQuerySet -__version__ = '2.3.1' +__version__ = '2.3.2' __all__ = ( diff --git a/setup.py b/setup.py index de65180..a0cc4c4 100755 --- a/setup.py +++ b/setup.py @@ -72,8 +72,8 @@ def run(self): setup( name='django-postgres-copy', - version='2.3.1', - description="Quickly move comma-delimited data in and out of a Django model using PostgreSQL's COPY command", + version='2.3.2', + description="Quickly import and export comma-delimited data via Django models using PostgreSQL's COPY command", author='Ben Welsh', author_email='ben.welsh@gmail.com', url='http://django-postgres-copy.californiacivicdata.org/',