Skip to content

Commit aee353f

Browse files
committed
Merge tag 'v0.3.4' into develop
2 parents 1f89a5e + c6ff066 commit aee353f

File tree

9 files changed

+19
-13
lines changed

9 files changed

+19
-13
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@ deploy:
5959
user: t-sommer
6060
password:
6161
secure: kZB9lfyKFiWSHk0B4llLBeD7cHxhP6bvFiNH0MK8CzlJeHzOyRnnYqD4xeAP1Y/SEY+My72vt/97v2ZfnxxsKuR3fwCjv7/97B2s2WsMtigm3sbBe2Z3xR3DEh+gvuwheElIExbLhpllnXFSAv/oCvQ8F/gJSW2kxzUSIys5NMB0qwinG97hhBb92XjstDaYW12DmKKy1gzz2xqZ7ulluyLXIsV8LjPA3dM0AhtXwtWFhyMMV8MZY+nh7MnenIpvjpPk+7B72L8s2mQlkofWGMjSiyLCQUKeOA6jT+UnWDXkBM/TkxXO4E7ixSfO4sKFo1j9TVsBr23VnypVh6rA0UU0n+WcpGEXMc+/pI3yecyD2h0R7J5EyX0x17eTy14xA07xqa1chVjgsbfFIi7vDAE1dvZMGnTtYUA/i6XSAcDggx7yF/Ry6ALYmH1/NduTaBlpahn7A793MpIgiuA0z2IBmQAbCLIUVftmn9GG0l+qtlmqtvnmcBEfBwJgjRcDfDZ1U2wsVoZps/rMgppNXfyu6DyGCIVBX7xmKUpxpWBpTzUq+qpHxVFEsR5HGyu8LuWCJZmJHjE9KSMWhGS1Bcv/K1xolRdKtl7vR+OTxlzYqnxRf729O0cC67E7fE3Htg0IKaX4tK7XVavu1cWhVQSHjP2KcQPuDWUCrso7328=
62-
distributions: bdist_wheel --universal
62+
distributions: sdist bdist_wheel --universal
6363
skip_cleanup: true

CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
# Changelog
22

3-
## [0.3.3] (2017-12-13)
3+
## v0.3.4 (2019-02-14)
4+
5+
Apply sign when reading time series from Dymola result files (.mat)
6+
7+
## v0.3.3 (2017-12-13)
48

59
### Changed
6-
- Distribution package changed from .tar.gz to .whl (Python Wheel)
710

8-
## [0.3.2] (2017-07-09)
11+
Distribution package changed from .tar.gz to .whl (Python Wheel)
12+
13+
## v0.3.2 (2017-07-09)
914

1015
### Added
11-
- Support for Linux and Mac
16+
17+
Add support for Linux and Mac

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Get the scale for the first dimension:
7272

7373
-----------------------------
7474

75-
|copyright| 2017 |Dassault Systemes|
75+
|copyright| 2019 |Dassault Systemes|
7676

7777
.. _SDF specification: https://github.com/ScientificDataFormat/SDF
7878
.. _HDF5: https://www.hdfgroup.org/hdf5/

sdf/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017 Dassault Systemes. All rights reserved.
1+
# Copyright (c) 2019 Dassault Systemes. All rights reserved.
22

33
import numpy as np
44
from .units import convert_unit
@@ -7,7 +7,7 @@
77

88
from . import hdf5
99

10-
__version__ = '0.3.3'
10+
__version__ = '0.3.4'
1111

1212
_object_name_pattern = re.compile('[a-zA-Z][a-zA-Z0-9_]*')
1313

sdf/dsres.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017 Dassault Systemes. All rights reserved.
1+
# Copyright (c) 2019 Dassault Systemes. All rights reserved.
22

33
import numpy as np
44
from sdf import Group, Dataset

sdf/hdf5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017 Dassault Systemes. All rights reserved.
1+
# Copyright (c) 2019 Dassault Systemes. All rights reserved.
22

33
import h5py
44
import sdf

sdf/ndtable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017 Dassault Systemes. All rights reserved.
1+
# Copyright (c) 2019 Dassault Systemes. All rights reserved.
22

33
from ctypes import c_double, c_void_p, c_int, byref, cdll
44
import numpy as np

sdf/units.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017 Dassault Systemes. All rights reserved.
1+
# Copyright (c) 2019 Dassault Systemes. All rights reserved.
22

33
import math
44

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def readme():
1111

1212

1313
setup(name='SDF',
14-
version='0.3.3',
14+
version='0.3.4',
1515
description="Work with Scientific Data Format files in Python",
1616
long_description=readme(),
1717
url="https://github.com/ScientificDataFormat/SDF-Python",

0 commit comments

Comments
 (0)