Skip to content

Commit

Permalink
bump up to 0.6.0, adding audio reader to release
Browse files Browse the repository at this point in the history
  • Loading branch information
zhreshold committed Jun 14, 2021
1 parent e0b7f7c commit 6a3617c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/decord/runtime/c_runtime_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
#endif

// DECORD version
#define DECORD_VERSION "0.5.3"
#define DECORD_VERSION "0.6.0"


// DECORD Runtime is DLPack compatible.
Expand Down
2 changes: 1 addition & 1 deletion python/decord/_ffi/libinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion src/runtime/file_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ void SaveBinaryToFile(
void SaveMetaDataToFile(
const std::string& file_name,
const std::unordered_map<std::string, FunctionInfo>& 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);
Expand Down
2 changes: 1 addition & 1 deletion tools/update_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 6a3617c

Please sign in to comment.