Skip to content

Commit

Permalink
🥚 🎡 release 0.5.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Mar 14, 2019
1 parent 4802cb0 commit 082b1e7
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 19 deletions.
3 changes: 2 additions & 1 deletion .moban.d/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
{%endblock%}

{%block features %}
**{{name}}** does {{description}}.
**{{name}}** does {{description}}. So far, it can read data out but cannot recognize
date time format from float datat type.
{%endblock%}
5 changes: 4 additions & 1 deletion .moban.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,7 @@ targets:
- .gitignore: gitignore.jj2
- "docs/source/conf.py": "docs/source/conf.py.jj2"
- "pyexcel_xlsbr/_version.py": version.py.jj2
- lint.sh: lint.script.jj2
- lint.sh: lint.script.jj2
- output: CHANGELOG.rst
configuration: changelog.yml
template: CHANGELOG.rst.jj2
10 changes: 9 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
Change log
===========
================================================================================

0.5.0-rc1 - 14.03.2019
--------------------------------------------------------------------------------

first release
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

#. read data out from xlsb format but to pyexcel-io's standard
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ a little bit more time in coding, documentation and writing interesting posts.

Introduction
================================================================================
**pyexcel-xlsbr** does read Microsoft Excel tm xlsb file.
**pyexcel-xlsbr** does read Microsoft Excel tm xlsb file. So far, it can read data out but cannot recognize
date time format from float datat type.



Expand Down
9 changes: 9 additions & 0 deletions changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: pyexcel-xlsxr
organisation: pyexcel
releases:
- changes:
- action: first release
details:
- read data out from xlsb format but to pyexcel-io's standard
date: 14.03.2019
version: 0.5.0-rc1
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
copyright = 'copyright 2015-2019 Onni Software Ltd.'
author = 'Onni Software Ltd.'
# The short X.Y version
version = '0.0.1'
version = '0.5.0-rc1'
# The full version, including alpha/beta/rc tags
release = '0.0.1'
release = '0.5.0-rc1'

# -- General configuration ---------------------------------------------------

Expand Down
6 changes: 3 additions & 3 deletions pyexcel-xlsbr.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
overrides: "pyexcel.yaml"
name: "pyexcel-xlsbr"
nick_name: "xlsb"
version: "0.0.1"
current_version: "0.0.1"
release: "0.0.1"
version: "0.5.0-rc1"
current_version: "0.5.0-rc1"
release: "0.5.0-rc1"
dependencies:
- pyxlsb
- pyexcel-io
Expand Down
4 changes: 2 additions & 2 deletions pyexcel_xlsbr/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.0.1"
__author__ = "C.W."
__version__ = '0.5.0-rc1'
__author__ = 'C.W.'
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#!/usr/bin/env python3

import codecs
import locale
# Template by pypi-mobans
import os
import platform
import sys
import codecs
import locale
import platform
from shutil import rmtree

from setuptools import Command, find_packages, setup
from setuptools import Command, setup, find_packages

PY2 = sys.version_info[0] == 2
PY26 = PY2 and sys.version_info[1] < 7
Expand All @@ -29,14 +29,14 @@

NAME = 'pyexcel-xlsbr'
AUTHOR = 'C.W.'
VERSION = '0.0.1'
VERSION = '0.5.0-rc1'
EMAIL = '[email protected]'
LICENSE = 'New BSD'
DESCRIPTION = (
'read Microsoft Excel tm xlsb file'
)
URL = 'https://github.com/pyexcel/pyexcel-xlsbr'
DOWNLOAD_URL = '%s/archive/0.0.1.tar.gz' % URL
DOWNLOAD_URL = '%s/archive/0.5.0-rc1.tar.gz' % URL
FILES = ['README.rst', 'CHANGELOG.rst']
KEYWORDS = [
'python',
Expand Down Expand Up @@ -67,8 +67,8 @@
# 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-xlsbr v0.0.1 ' +
"Find 0.0.1 in changelog for more details")
GS_COMMAND = ('gs pyexcel-xlsbr v0.5.0-rc1 ' +
"Find 0.5.0-rc1 in changelog for more details")
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
'Please install gease to enable it.')
UPLOAD_FAILED_MSG = (
Expand Down

0 comments on commit 082b1e7

Please sign in to comment.