Skip to content

Commit

Permalink
Showing 6 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v0.9.4 2018-01-31
* Correct version numbers.

v0.9.3 2018-01-31
* NCrystal_sample.comp (McStas interface): Fix link flags on OSX
(github issue #3) and compilation warnings (github issue #4).
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.2
0.9.4
6 changes: 3 additions & 3 deletions ncrystal_core/include/NCrystal/NCVersion.hh
Original file line number Diff line number Diff line change
@@ -23,8 +23,8 @@

#define NCRYSTAL_VERSION_MAJOR 0
#define NCRYSTAL_VERSION_MINOR 9
#define NCRYSTAL_VERSION_PATCH 2
#define NCRYSTAL_VERSION 9002 /* (1000000*MAJOR+1000*MINOR+PATCH) */
#define NCRYSTAL_VERSION_STR "0.9.2"
#define NCRYSTAL_VERSION_PATCH 4
#define NCRYSTAL_VERSION 9004 /* (1000000*MAJOR+1000*MINOR+PATCH) */
#define NCRYSTAL_VERSION_STR "0.9.4"

#endif
6 changes: 3 additions & 3 deletions ncrystal_core/include/NCrystal/ncrystal.h
Original file line number Diff line number Diff line change
@@ -197,9 +197,9 @@ extern "C" {
/* NCrystal version info: */
#define NCRYSTAL_VERSION_MAJOR 0
#define NCRYSTAL_VERSION_MINOR 9
#define NCRYSTAL_VERSION_PATCH 2
#define NCRYSTAL_VERSION 9002 /* (1000000*MAJOR+1000*MINOR+PATCH) */
#define NCRYSTAL_VERSION_STR "0.9.2"
#define NCRYSTAL_VERSION_PATCH 4
#define NCRYSTAL_VERSION 9004 /* (1000000*MAJOR+1000*MINOR+PATCH) */
#define NCRYSTAL_VERSION_STR "0.9.4"
int ncrystal_version(); /* returns NCRYSTAL_VERSION */
const char * ncrystal_version_str(); /* returns NCRYSTAL_VERSION_STR */

2 changes: 1 addition & 1 deletion ncrystal_mcstas/NCrystal_sample.comp
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@
* %I
*
* Written by: NCrystal developers
* Version: 0.9.2
* Version: 0.9.4
* Origin: NCrystal Developers (European Spallation Source ERIC and DTU Nutech)
*
* McStas sample component for the NCrystal scattering library. Find more
2 changes: 1 addition & 1 deletion ncrystal_python/__init__.py
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@

__license__ = "Apache 2.0, http://www.apache.org/licenses/LICENSE-2.0"
__copyright__ = "Copyright 2017"
__version__ = '0.9.2'
__version__ = '0.9.4'
__status__ = "Production"
__author__ = "NCrystal developers (Thomas Kittelmann, Xiao Xiao Cai)"
__copyright__ = "Copyright 2015-2017 %s"%__author__

0 comments on commit 8a2d3df

Please sign in to comment.