Skip to content

Commit fc8a158

Browse files
committed
0.5.1
1 parent 79d14db commit fc8a158

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

include/decord/runtime/c_runtime_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
#endif
4444

4545
// DECORD version
46-
#define DECORD_VERSION "0.5.0"
46+
#define DECORD_VERSION "0.5.1"
4747

4848

4949
// DECORD Runtime is DLPack compatible.

python/decord/_ffi/libinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ def find_lib_path(name=None, search_path=None, optional=False):
8787
# We use the version of the incoming release for code
8888
# that is under development.
8989
# The following line is set by decord/python/update_version.py
90-
__version__ = "0.5.0"
90+
__version__ = "0.5.1"

src/runtime/file_util.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ void SaveBinaryToFile(
117117
void SaveMetaDataToFile(
118118
const std::string& file_name,
119119
const std::unordered_map<std::string, FunctionInfo>& fmap) {
120-
std::string version = "0.5.0";
120+
std::string version = "0.5.1";
121121
std::ofstream fs(file_name.c_str());
122122
CHECK(!fs.fail()) << "Cannot open file " << file_name;
123123
dmlc::JSONWriter writer(&fs);

tools/update_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# current version
1212
# We use the version of the incoming release for code
1313
# that is under development
14-
__version__ = "0.5.0"
14+
__version__ = "0.5.1"
1515

1616
# Implementations
1717
def update(file_name, pattern, repl):

0 commit comments

Comments
 (0)