Skip to content

Commit

Permalink
修复 raft api并发布一个beta版本 #125
Browse files Browse the repository at this point in the history
  • Loading branch information
heqingpan committed Aug 6, 2024
1 parent 94e8e62 commit a505f00
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rnacos"
version = "0.5.19"
version = "0.5.20-beta"
authors = ["heqingpan <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/common/constant.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::sync::Arc;

pub const APP_VERSION: &str = "0.5.19";
pub const APP_VERSION: &str = "0.5.20-beta";

pub const EMPTY_STR: &str = "";

Expand Down
4 changes: 2 additions & 2 deletions src/web_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ pub fn app_config(conf_data: AppSysConfig) -> impl FnOnce(&mut ServiceConfig) {
);
login_config(config);
metrics_config(config);
config.configure(openapi_config(conf_data));
raft_config(config);
config.configure(openapi_config(conf_data));
} else {
login_config(config);
metrics_config(config);
config.configure(openapi_config(conf_data));
raft_config(config);
config.configure(openapi_config(conf_data));
console_api_config(config);
console_api_config_v2(config);
console_api_config_v1(config);
Expand Down

0 comments on commit a505f00

Please sign in to comment.