diff --git a/include/decord/runtime/c_runtime_api.h b/include/decord/runtime/c_runtime_api.h index d54ea2e..9ca2d35 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.5.3" +#define DECORD_VERSION "0.6.0" // DECORD Runtime is DLPack compatible. diff --git a/python/decord/_ffi/libinfo.py b/python/decord/_ffi/libinfo.py index f312da7..7dcf82c 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.5.3" +__version__ = "0.6.0" diff --git a/src/runtime/file_util.cc b/src/runtime/file_util.cc index ad3cb6f..f586d7f 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.5.3"; + std::string version = "0.6.0"; 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 ead98f0..4fdc9b4 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.5.3" +__version__ = "0.6.0" # Implementations def update(file_name, pattern, repl):