diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7241371..68b9217 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,10 +1,19 @@ Change log ================================================================================ +0.5.9 - 23.08.2018 +-------------------------------------------------------------------------------- + +added +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +#. `pyexcel#148 `_, support + force_file_type + 0.5.8 - 16.08.2018 -------------------------------------------------------------------------------- -fixed +added ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ #. `#49 `_, support additional diff --git a/changelog.yml b/changelog.yml index fe0e3a7..a46bc92 100644 --- a/changelog.yml +++ b/changelog.yml @@ -2,7 +2,13 @@ name: pyexcel-io organisation: pyexcel releases: - changes: - - action: fixed + - action: added + details: + - '`pyexcel#148`, support force_file_type' + date: 23.08.2018 + version: 0.5.9 +- changes: + - action: added details: - '`#49`, support additional options when detecting float values in csv format. default_float_nan, ignore_nan_text' date: 16.08.2018 diff --git a/docs/source/conf.py b/docs/source/conf.py index 99d6ed0..e0bf5d0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -29,7 +29,7 @@ copyright = u'2015-2018 Onni Software Ltd.' author = u'C.W.' # The short X.Y version -version = u'0.5.8' +version = u'0.5.9' # The full version, including alpha/beta/rc tags release = u'0.5.9' diff --git a/docs/source/index.rst b/docs/source/index.rst index 5bc9765..7638344 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -10,7 +10,6 @@ :Source code: http://github.com/pyexcel/pyexcel-io.git :Issues: http://github.com/pyexcel/pyexcel-io/issues :License: New BSD License -:Development: |release| :Released: |version| :Generated: |today| diff --git a/pyexcel-io.yml b/pyexcel-io.yml index 43ac777..598254c 100644 --- a/pyexcel-io.yml +++ b/pyexcel-io.yml @@ -3,7 +3,7 @@ name: "pyexcel-io" nick_name: io version: 0.5.9 current_version: 0.5.9 -release: 0.5.8 +release: 0.5.9 dependencies: - ordereddict;python_version<"2.7" - lml==0.0.1 diff --git a/setup.py b/setup.py index 3f447bf..cd0e935 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ DESCRIPTION = ( 'format and to/from databases' ) URL = 'https://github.com/pyexcel/pyexcel-io' -DOWNLOAD_URL = '%s/archive/0.5.8.tar.gz' % URL +DOWNLOAD_URL = '%s/archive/0.5.9.tar.gz' % URL FILES = ['README.rst', 'CHANGELOG.rst'] KEYWORDS = [ 'API', @@ -63,8 +63,8 @@ EXTRAS_REQUIRE = { # You do not need to read beyond this line PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format( sys.executable) -GS_COMMAND = ('gs pyexcel-io v0.5.8 ' + - "Find 0.5.8 in changelog for more details") +GS_COMMAND = ('gs pyexcel-io v0.5.9 ' + + "Find 0.5.9 in changelog for more details") NO_GS_MESSAGE = ('Automatic github release is disabled. ' + 'Please install gease to enable it.') UPLOAD_FAILED_MSG = (