Skip to content

Commit db9c74d

Browse files
committed
Release 1.4.0
* Changed the type of qualified names to prov:QUALIFIED_NAME (fixed #68) * Removed XSDQName class and stopped supporting parsing xsd:QName as qualified names * Replaced pydot dependency with pydotplus * Removed support for Python 2.6 * Various minor bug fixes and improvements
1 parent d916dbc commit db9c74d

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

HISTORY.rst

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
History
44
-------
55

6+
1.4.0 (2015-08-13)
7+
^^^^^^^^^^^^^^^^^^
8+
* Changed the type of qualified names to prov:QUALIFIED_NAME (fixed #68)
9+
* Removed XSDQName class and stopped supporting parsing xsd:QName as qualified names
10+
* Replaced pydot dependency with pydotplus
11+
* Removed support for Python 2.6
12+
* Various minor bug fixes and improvements
13+
614
1.3.2 (2015-06-17)
715
^^^^^^^^^^^^^^^^^^
816
* Added: prov-compare script to check equivalence of two PROV files (currently supporting JSON and XML)

prov/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
__author__ = 'Trung Dong Huynh'
55
__email__ = '[email protected]'
6-
__version__ = '1.3.2'
6+
__version__ = '1.4.0'
77

88
__all__ = ["Error", "model", "read"]
99

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
setup(
2525
name='prov',
26-
version='1.3.2',
26+
version='1.4.0',
2727
description='A library for W3C Provenance Data Model supporting PROV-JSON '
2828
'and PROV-XML',
2929
long_description=readme + '\n\n' + history,

0 commit comments

Comments
 (0)