Skip to content

Commit 7d6fd1a

Browse files
committed
ChangeLog: 1.4.0 Release - SDC global Attributes
Interface change for `SerialDataCollector` (SDC): reading old files needs manual tuning for global attributes: API increased to `1.4.0` and file format bumped to `4.0` since the changes in SDC are not backwards compatible.
1 parent cd632e6 commit 7d6fd1a

2 files changed

Lines changed: 18 additions & 5 deletions

File tree

CHANGELOG.md

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

4+
Release 1.4.0
5+
-------------
6+
**Date:** 2016-04-12
7+
8+
The `SerialDataCollector` now also writes global attributes
9+
to `/`, allowing serial files to fulfill the openPMD standard.
10+
11+
**Interface Changes**
12+
13+
- `SerialDataCollector::writeGlobalAttribute` now writes to `/`
14+
instead of `/custom` (follow-up to #182) #229
15+
16+
417
Release 1.3.1
518
-------------
619
**Date:** 2016-04-12

src/include/splash/version.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2013-2015 Felix Schmitt, Axel Huebl
2+
* Copyright 2013-2016 Felix Schmitt, Axel Huebl
33
*
44
* This file is part of libSplash.
55
*
@@ -25,14 +25,14 @@
2525

2626
/** the splash version reflects the changes in API */
2727
#define SPLASH_VERSION_MAJOR 1
28-
#define SPLASH_VERSION_MINOR 3
29-
#define SPLASH_VERSION_PATCH 1
28+
#define SPLASH_VERSION_MINOR 4
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
3333
*/
34-
#define SPLASH_FILE_FORMAT_MAJOR 3
35-
#define SPLASH_FILE_FORMAT_MINOR 3
34+
#define SPLASH_FILE_FORMAT_MAJOR 4
35+
#define SPLASH_FILE_FORMAT_MINOR 0
3636

3737
/** The version of HDF5 that was used to compile splash */
3838
#define SPLASH_HDF5_VERSION "${HDF5_VERSION}"

0 commit comments

Comments
 (0)