Skip to content

Commit aafd1a4

Browse files
committed
release candidate 0.1.0
1 parent 6bbcd3f commit aafd1a4

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015 by Onni Software Ltd.
1+
Copyright (c) 2015-2016 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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0-dev
1+
0.1.0-rc1

docs/source/conf.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@
1717
import shlex
1818

1919

20-
with open(os.path.join("..", "..", "VERSION"), "r") as version:
21-
version_txt = version.read().rstrip()
20+
try:
21+
with open(os.path.join("..", "..", "VERSION"), "r") as version:
22+
version_txt = version.read().rstrip()
23+
except:
24+
version_txt = "not_in_sphinx"
2225

2326

2427
# If extensions (or modules to document with autodoc) are in another directory,

pyexcel_ods3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
ODS format plugin for pyexcel
66
7-
:copyright: (c) 2015 by Onni Software Ltd
7+
:copyright: (c) 2015-2016 by Onni Software Ltd. & its contributors
88
:license: New BSD License
99
"""
1010
import sys

0 commit comments

Comments
 (0)