Bump to 0.29.2

This commit is contained in:
Zheng, Qi 2022-11-07 14:08:37 +08:00 committed by volcano
parent 4871f15e14
commit ac30c2b787
5 changed files with 6 additions and 6 deletions

2
src/exec/Cargo.lock generated

@ -542,7 +542,7 @@ dependencies = [
[[package]]
name = "occlum_exec"
version = "0.29.1"
version = "0.29.2"
dependencies = [
"chrono",
"clap",

@ -1,6 +1,6 @@
[package]
name = "occlum_exec"
version = "0.29.1"
version = "0.29.2"
edition = "2021"
[lib]

2
src/libos/Cargo.lock generated

@ -4,7 +4,7 @@ version = 3
[[package]]
name = "Occlum"
version = "0.29.1"
version = "0.29.2"
dependencies = [
"aligned",
"atomic",

@ -1,6 +1,6 @@
[package]
name = "Occlum"
version = "0.29.1"
version = "0.29.2"
edition = "2021"
[lib]

@ -3,10 +3,10 @@
#ifndef _OCCLUM_VERSION_H_
#define _OCCLUM_VERSION_H_
// Version = 0.29.1
// Version = 0.29.2
#define OCCLUM_MAJOR_VERSION 0
#define OCCLUM_MINOR_VERSION 29
#define OCCLUM_PATCH_VERSION 1
#define OCCLUM_PATCH_VERSION 2
#define STRINGIZE_PRE(X) #X
#define STRINGIZE(X) STRINGIZE_PRE(X)