Skip to content

Commit 0fc9766

Browse files
author
Steve Canny
committed
release: v1.0.0
1 parent d2cd105 commit 0fc9766

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

HISTORY.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
History
22
=======
33

4+
1.0.0 (2014-01-14)
5+
------------------
6+
7+
* Add pretty-printing of extracted XML on extract command
8+
9+
410
0.9.8 (2013-12-13)
511
------------------
612

713
* hotfix -- fix UnicodeEncodeError on output containing non-ASCII chars
814

15+
916
0.9.7 (2013-09-23)
1017
------------------
1118

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
# All configuration values have a default; values that are commented out
1313
# serve to show the default.
1414

15-
import sys, os
15+
import os
16+
import sys
1617

1718
sys.path.insert(0, os.path.abspath('..'))
1819

19-
import opcdiag
2020
from opcdiag import __version__
2121

2222
# -- General configuration --------------------------------------------------
@@ -129,7 +129,7 @@
129129
# Add any paths that contain custom static files (such as style sheets) here,
130130
# relative to this directory. They are copied after the builtin static files,
131131
# so a file named "default.css" will overwrite the builtin "default.css".
132-
html_static_path = ['.static']
132+
# html_static_path = ['.static']
133133

134134
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
135135
# using the given strftime format.

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
opc-diag
33
########
44

5-
Release v0.9.0 (:ref:`Installation <install>`)
5+
Release v\ |version| (:ref:`Installation <install>`)
66

77
.. include:: ../README.rst
88

opcdiag/__init__.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
3-
# __init__.py
4-
#
5-
# Copyright (C) 2012, 2013 Steve Canny [email protected]
6-
#
7-
# This module is part of opc-diag and is released under the MIT License:
8-
# http://www.opensource.org/licenses/mit-license.php
1+
# encoding: utf-8
92

10-
__version__ = '0.9.8' # pragma: no cover
3+
__version__ = '1.0.0' # pragma: no cover

0 commit comments

Comments
 (0)