Skip to content

Commit

Permalink
bump up to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zhreshold committed Oct 1, 2020
1 parent 4fa8999 commit 584e5f8
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.4.0"
#define DECORD_VERSION "0.4.1"


// 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.4.0"
__version__ = "0.4.1"
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.4.0";
std::string version = "0.4.1";
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.4.0"
__version__ = "0.4.1"

# Implementations
def update(file_name, pattern, repl):
Expand Down

0 comments on commit 584e5f8

Please sign in to comment.