diff --git a/include/decord/runtime/c_runtime_api.h b/include/decord/runtime/c_runtime_api.h index 3d393ec..506b06b 100644 --- a/include/decord/runtime/c_runtime_api.h +++ b/include/decord/runtime/c_runtime_api.h @@ -43,7 +43,7 @@ #endif // DECORD version -#define DECORD_VERSION "0.3.7" +#define DECORD_VERSION "0.3.8" // DECORD Runtime is DLPack compatible. diff --git a/python/decord/_ffi/libinfo.py b/python/decord/_ffi/libinfo.py index d44e96d..607da2b 100644 --- a/python/decord/_ffi/libinfo.py +++ b/python/decord/_ffi/libinfo.py @@ -87,4 +87,4 @@ def find_lib_path(name=None, search_path=None, optional=False): # We use the version of the incoming release for code # that is under development. # The following line is set by decord/python/update_version.py -__version__ = "0.3.7" +__version__ = "0.3.8" diff --git a/src/runtime/file_util.cc b/src/runtime/file_util.cc index 3b77c05..e932a3d 100644 --- a/src/runtime/file_util.cc +++ b/src/runtime/file_util.cc @@ -117,7 +117,7 @@ void SaveBinaryToFile( void SaveMetaDataToFile( const std::string& file_name, const std::unordered_map& fmap) { - std::string version = "0.3.7"; + std::string version = "0.3.8"; std::ofstream fs(file_name.c_str()); CHECK(!fs.fail()) << "Cannot open file " << file_name; dmlc::JSONWriter writer(&fs); diff --git a/tools/update_version.py b/tools/update_version.py index eb68540..f20b047 100644 --- a/tools/update_version.py +++ b/tools/update_version.py @@ -11,7 +11,7 @@ # current version # We use the version of the incoming release for code # that is under development -__version__ = "0.3.7" +__version__ = "0.3.8" # Implementations def update(file_name, pattern, repl):