Skip to content

Commit

Permalink
ChangeLog: 1.4.0 Release - SDC global Attributes
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ax3l committed Apr 12, 2016
1 parent cd632e6 commit 7d6fd1a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Change Log for libSplash
================================================================

Release 1.4.0
-------------
**Date:** 2016-04-12

The `SerialDataCollector` now also writes global attributes
to `/`, allowing serial files to fulfill the openPMD standard.

**Interface Changes**

- `SerialDataCollector::writeGlobalAttribute` now writes to `/`
instead of `/custom` (follow-up to #182) #229


Release 1.3.1
-------------
**Date:** 2016-04-12
Expand Down
10 changes: 5 additions & 5 deletions src/include/splash/version.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright 2013-2015 Felix Schmitt, Axel Huebl
* Copyright 2013-2016 Felix Schmitt, Axel Huebl
*
* This file is part of libSplash.
*
Expand All @@ -25,14 +25,14 @@

/** the splash version reflects the changes in API */
#define SPLASH_VERSION_MAJOR 1
#define SPLASH_VERSION_MINOR 3
#define SPLASH_VERSION_PATCH 1
#define SPLASH_VERSION_MINOR 4
#define SPLASH_VERSION_PATCH 0

/** we can always handle files from the same major release
* changes in the minor number have to be backwards compatible
*/
#define SPLASH_FILE_FORMAT_MAJOR 3
#define SPLASH_FILE_FORMAT_MINOR 3
#define SPLASH_FILE_FORMAT_MAJOR 4
#define SPLASH_FILE_FORMAT_MINOR 0

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

0 comments on commit 7d6fd1a

Please sign in to comment.