From c0d992287a44067b266c97dafadc6d1ffeb09096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20De=20Un=C3=A1nue?= Date: Thu, 16 Jun 2022 00:38:14 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.5.0=20=E2=86=92=200.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.rst | 4 ++-- doc/conf.py | 2 +- doc/index.rst | 4 ++-- setup.cfg | 3 +-- setup.py | 2 +- src/ohio/__init__.py | 2 +- 6 files changed, 8 insertions(+), 9 deletions(-) diff --git a/README.rst b/README.rst index 8035376..9e36d02 100644 --- a/README.rst +++ b/README.rst @@ -803,7 +803,7 @@ of 896,677 rows across 83 columns: 1 of these of type timestamp, 51 integers and 31 floats. The benchmarking package, ``prof``, is preserved in `Ohio's repository `_. -.. image:: https://raw.githubusercontent.com/dssg/ohio/0.5.0/doc/img/profile-copy-from-database-to-datafram-1554345457.svg?sanitize=true +.. image:: https://raw.githubusercontent.com/dssg/ohio/0.6.0/doc/img/profile-copy-from-database-to-datafram-1554345457.svg?sanitize=true ohio_pg_copy_from_X ``pg_copy_from(buffer_size=X)`` @@ -831,7 +831,7 @@ pandas_read_csv_stringio ``COPY`` to a ``StringIO``, from which pandas constructs a ``DataFrame``. -.. image:: https://raw.githubusercontent.com/dssg/ohio/0.5.0/doc/img/profile-copy-from-dataframe-to-databas-1555458507.svg?sanitize=true +.. image:: https://raw.githubusercontent.com/dssg/ohio/0.6.0/doc/img/profile-copy-from-dataframe-to-databas-1555458507.svg?sanitize=true ohio_pg_copy_to ``pg_copy_to()`` diff --git a/doc/conf.py b/doc/conf.py index 32ddbf8..04a9fa6 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -23,7 +23,7 @@ author = 'Jesse London' # The full version, including alpha/beta/rc tags -release = '0.5.0' +release = '0.6.0' # -- General configuration --------------------------------------------------- diff --git a/doc/index.rst b/doc/index.rst index 1bde129..2f507be 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -113,7 +113,7 @@ Modules .. Also note the query string ?sanitize=true This is necessary to ensure that SVG is returned with the image content type. - .. image:: https://raw.githubusercontent.com/dssg/ohio/0.5.0/doc/img/profile-copy-from-database-to-datafram-1554345457.svg?sanitize=true + .. image:: https://raw.githubusercontent.com/dssg/ohio/0.6.0/doc/img/profile-copy-from-database-to-datafram-1554345457.svg?sanitize=true ohio_pg_copy_from_X ``pg_copy_from(buffer_size=X)`` @@ -141,7 +141,7 @@ Modules ``COPY`` to a ``StringIO``, from which pandas constructs a ``DataFrame``. - .. image:: https://raw.githubusercontent.com/dssg/ohio/0.5.0/doc/img/profile-copy-from-dataframe-to-databas-1555458507.svg?sanitize=true + .. image:: https://raw.githubusercontent.com/dssg/ohio/0.6.0/doc/img/profile-copy-from-dataframe-to-databas-1555458507.svg?sanitize=true ohio_pg_copy_to ``pg_copy_to()`` diff --git a/setup.cfg b/setup.cfg index 6f59a81..7d97d7b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ commit = True tag = True tag_name = {new_version} -current_version = 0.5.0 +current_version = 0.6.0 [bumpversion:file:setup.py] @@ -19,4 +19,3 @@ test = pytest [metadata] license_files = LICENSE - diff --git a/setup.py b/setup.py index ac8a196..380122b 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ def stream_requirements(fd): setup( name='ohio', - version='0.5.0', + version='0.6.0', description="I/O extras", long_description=README_PATH.read_text(), long_description_content_type='text/x-rst', diff --git a/src/ohio/__init__.py b/src/ohio/__init__.py index b6294fa..108beb1 100644 --- a/src/ohio/__init__.py +++ b/src/ohio/__init__.py @@ -35,4 +35,4 @@ ) -__version__ = '0.5.0' +__version__ = '0.6.0'