Skip to content

Commit 722f6bd

Browse files
author
f-schmitt-zih
committed
Merge pull request #205 from ax3l/doc-changelog130
Release 1.3.0: Add Changelog
2 parents dbda3f2 + 043eab6 commit 722f6bd

File tree

2 files changed

+49
-2
lines changed

2 files changed

+49
-2
lines changed

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,53 @@
11
Change Log for libSplash
22
================================================================
33

4+
Release 1.3.0
5+
-------------
6+
**Date:** 2015-11-12
7+
8+
This release adds functionality for users to fulfill formatting for
9+
`openPMD`. Support for array attributes, strings/chars, bools and
10+
further `h5py` compatibility have been added. Additionally, read
11+
functionality has improved by new meta calls to determine type
12+
and size of a data set before reading.
13+
The internal format was increased to version 3.3
14+
15+
**New Features**
16+
17+
- bool types are now h5py compatible #153 #198
18+
- new interface `readMeta` in `DataCollector`s to determine type
19+
and size before reading #203
20+
- new interfaces for `DataCollector`s `writeGlobalAttribute` to support
21+
arrays via HDF5 simple data spaces (h5py compatible) #170 #171
22+
- `splashVersion` and `splashFormat` are now written to `/header` #183
23+
- header define `SPLASH_HDF5_VERSION` remembers HDF5 version of build #177
24+
- `char`s, fixed and variable length `string` support added #167
25+
26+
27+
**Interface Changes**
28+
29+
- `ParallelDataCollector::writeGlobalAttribute` now writes to `/` instead of
30+
`/custom` (`SerialDataCollector` unchanged) #182
31+
32+
33+
**Misc**
34+
35+
- term "iteration" is now consequently preferred over
36+
"time step" #157 #187 #188 #204
37+
- public includes do not throw on `-Wshadow` any more #201
38+
- `/header/compression` attribute in new bool representation #199
39+
- CMake:
40+
- shared library detection refactored #192
41+
- FindHDF5 shipped with version support (pre CMake 3.3.0) #176 #169
42+
- doxygen project name updated #178
43+
- `DataSpace` refactored: prefer `DSP_DIM_MAX` over magic numbers #175
44+
- test scripts
45+
- CI (travis) false-positive fixed #172
46+
- output improved #166
47+
- warn on missing dir argument #185
48+
- `INSTALL.md` now in project's root directory #158
49+
50+
451
Release 1.2.4
552
-------------
653
**Date:** 2015-01-25

src/include/splash/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525

2626
/** the splash version reflects the changes in API */
2727
#define SPLASH_VERSION_MAJOR 1
28-
#define SPLASH_VERSION_MINOR 2
29-
#define SPLASH_VERSION_PATCH 4
28+
#define SPLASH_VERSION_MINOR 3
29+
#define SPLASH_VERSION_PATCH 0
3030

3131
/** we can always handle files from the same major release
3232
* changes in the minor number have to be backwards compatible

0 commit comments

Comments
 (0)