From cee3562b2503fdefeb0a4eebf95b83f52f17788d Mon Sep 17 00:00:00 2001 From: "Joshua Z. Zhang" Date: Fri, 13 Nov 2020 15:30:59 -0800 Subject: [PATCH] bump up to 0.4.2 --- include/decord/runtime/c_runtime_api.h | 2 +- python/decord/_ffi/libinfo.py | 2 +- src/runtime/file_util.cc | 2 +- tools/update_version.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/decord/runtime/c_runtime_api.h b/include/decord/runtime/c_runtime_api.h index 93efd77..c82cc1a 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.4.1" +#define DECORD_VERSION "0.4.2" // DECORD Runtime is DLPack compatible. diff --git a/python/decord/_ffi/libinfo.py b/python/decord/_ffi/libinfo.py index 541b7d4..6940f78 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.4.1" +__version__ = "0.4.2" diff --git a/src/runtime/file_util.cc b/src/runtime/file_util.cc index 15854ec..7d96c13 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.4.1"; + std::string version = "0.4.2"; 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 9df6b79..6b8ae02 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.4.1" +__version__ = "0.4.2" # Implementations def update(file_name, pattern, repl):