Skip to content

Commit 15ea9b4

Browse files
chfwactions-user
authored andcommitted
This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst
1 parent 0fdb32e commit 15ea9b4

File tree

7 files changed

+35
-10
lines changed

7 files changed

+35
-10
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: run_tests
1+
name: Run unit tests on Windows and Mac
22

33
on: [push, pull_request]
44

.readthedocs.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# .readthedocs.yml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Build documentation in the docs/ directory with Sphinx
9+
sphinx:
10+
configuration: docs/source/conf.py
11+
12+
# Optionally build your docs in additional formats such as PDF
13+
formats:
14+
- pdf
15+
16+
# Optionally set the version of Python and requirements required to build your docs
17+
python:
18+
version: 3.7

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Change log
22
================================================================================
33

4+
0.6.1 - 1.2.2022
5+
--------------------------------------------------------------------------------
6+
7+
**added**
8+
9+
#. `#28 <https://github.com/pyexcel/pyexcel-ods3/issues/28>`_: support datetime
10+
411
0.6.0 - 8.10.2020
512
--------------------------------------------------------------------------------
613

CONTRIBUTORS.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ In alphabetical order:
99
* `Mateusz Konieczny <https://github.com/matkoniecz>`_
1010
* `Michael K. <https://github.com/michael-k>`_
1111
* `Stephen J. Fuhry <https://github.com/fuhrysteve>`_
12-
* `vinraspa <https://github.com/vinraspa>`_
12+
* `Vincent Raspal <https://github.com/vinraspa>`_

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015-2021 by Onni Software Ltd. and its contributors
1+
Copyright (c) 2015-2022 by Onni Software Ltd. and its contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms of the software as well

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
# -- Project information -----------------------------------------------------
2323

2424
project = 'pyexcel-ods3'
25-
copyright = '2015-2021 Onni Software Ltd.'
25+
copyright = '2015-2022 Onni Software Ltd.'
2626
author = 'C.W.'
2727
# The short X.Y version
28-
version = '0.6.0'
28+
version = '0.6.1'
2929
# The full version, including alpha/beta/rc tags
30-
release = '0.6.0'
30+
release = '0.6.1'
3131

3232
# -- General configuration ---------------------------------------------------
3333

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232

3333
NAME = "pyexcel-ods3"
3434
AUTHOR = "C.W."
35-
VERSION = "0.6.0"
35+
VERSION = "0.6.1"
3636
3737
LICENSE = "New BSD"
3838
DESCRIPTION = (
3939
"A wrapper library to read, manipulate and write data in ods format"
4040
)
4141
URL = "https://github.com/pyexcel/pyexcel-ods3"
42-
DOWNLOAD_URL = "%s/archive/0.6.0.tar.gz" % URL
42+
DOWNLOAD_URL = "%s/archive/0.6.1.tar.gz" % URL
4343
FILES = ["README.rst", "CHANGELOG.rst"]
4444
KEYWORDS = [
4545
"python",
@@ -77,8 +77,8 @@
7777
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
7878
HERE = os.path.abspath(os.path.dirname(__file__))
7979

80-
GS_COMMAND = ("gease pyexcel-ods3 v0.6.0 " +
81-
"Find 0.6.0 in changelog for more details")
80+
GS_COMMAND = ("gease pyexcel-ods3 v0.6.1 " +
81+
"Find 0.6.1 in changelog for more details")
8282
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
8383
"Please install gease to enable it.")
8484
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)