Skip to content

Commit

Permalink
Bump version: 0.5.0 → 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nanounanue authored and jesteria committed Aug 11, 2022
1 parent d22a896 commit c0d9922
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/dssg/ohio>`_.

.. 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)``
Expand Down Expand Up @@ -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()``
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)``
Expand Down Expand Up @@ -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()``
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand All @@ -19,4 +19,3 @@ test = pytest

[metadata]
license_files = LICENSE

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion src/ohio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@
)


__version__ = '0.5.0'
__version__ = '0.6.0'

0 comments on commit c0d9922

Please sign in to comment.