Skip to content

Commit

Permalink
Set release version and date
Browse files Browse the repository at this point in the history
  • Loading branch information
lindstro committed May 5, 2019
1 parent af8e504 commit 697dd5d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.5.4-{build}
version: 0.5.5-{build}

environment:
matrix:
Expand Down
6 changes: 3 additions & 3 deletions fortran/zfp.f
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module zFORp_module

integer, parameter :: const_zFORp_version_major = 0
integer, parameter :: const_zFORp_version_minor = 5
integer, parameter :: const_zFORp_version_patch = 4
integer, parameter :: const_zFORp_version_patch = 5
integer, protected, bind(c, name="zFORp_version_major") :: zFORp_version_major
integer, protected, bind(c, name="zFORp_version_minor") :: zFORp_version_minor
integer, protected, bind(c, name="zFORp_version_patch") :: zFORp_version_patch
Expand All @@ -60,11 +60,11 @@ module zFORp_module
integer, protected, bind(c, name="zFORp_codec_version") :: zFORp_codec_version
data zFORp_codec_version/const_zFORp_codec_version/

integer, parameter :: const_zFORp_library_version = 84 ! 0x54
integer, parameter :: const_zFORp_library_version = 85 ! 0x55
integer, protected, bind(c, name="zFORp_library_version") :: zFORp_library_version
data zFORp_library_version/const_zFORp_library_version/

character(len = 36), parameter :: zFORp_version_string = 'zfp version 0.5.4 (October 1, 2018)'
character(len = 36), parameter :: zFORp_version_string = 'zfp version 0.5.5 (May 5, 2019)'

integer, parameter :: const_zFORp_min_bits = 1
integer, parameter :: const_zFORp_max_bits = 16657
Expand Down
2 changes: 1 addition & 1 deletion src/zfp.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

export_ const uint zfp_codec_version = ZFP_CODEC;
export_ const uint zfp_library_version = ZFP_VERSION;
export_ const char* const zfp_version_string = "zfp version " ZFP_VERSION_STRING " (October 1, 2018)";
export_ const char* const zfp_version_string = "zfp version " ZFP_VERSION_STRING " (May 5, 2019)";

/* private functions ------------------------------------------------------- */

Expand Down

0 comments on commit 697dd5d

Please sign in to comment.