We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca88483 commit de5eaf4Copy full SHA for de5eaf4
main/manager-api/src/main/java/xiaozhi/modules/security/controller/LoginController.java
@@ -121,7 +121,7 @@ public Result<?> changePassword(@RequestBody PasswordDTO passwordDTO) {
121
@Operation(summary = "公共配置")
122
public Result<Map<String, Object>> pubConfig() {
123
Map<String, Object> config = new HashMap<>();
124
- config.put("version", "0.3.4");
+ config.put("version", "0.3.5");
125
config.put("allowUserRegister", sysUserService.getAllowUserRegister());
126
return new Result<Map<String, Object>>().ok(config);
127
}
main/xiaozhi-server/config/logger.py
@@ -3,7 +3,7 @@
3
from loguru import logger
4
from config.config_loader import load_config
5
6
-SERVER_VERSION = "0.3.4"
+SERVER_VERSION = "0.3.5"
7
8
9
def get_module_abbreviation(module_name, module_dict):
0 commit comments