diff --git a/CHANGELOG.md b/CHANGELOG.md index 57e36377a..482b1b298 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [v1.4.2](https://github.com/Qihoo360/wayne/tree/v1.4.2) (2019-02-25) +[Full Changelog](https://github.com/Qihoo360/wayne/compare/v1.4.1...v1.4.2) + +**Fixed bugs:** + +- Fix list pvs status error [\#306](https://github.com/Qihoo360/wayne/pull/306) ([wilhelmguo](https://github.com/wilhelmguo)) + ## [v1.4.1](https://github.com/Qihoo360/wayne/tree/v1.4.1) (2019-02-18) [Full Changelog](https://github.com/Qihoo360/wayne/compare/v1.4.0...v1.4.1) diff --git a/src/backend/controllers/openapi/openapi.go b/src/backend/controllers/openapi/openapi.go index 285f215a2..267189272 100644 --- a/src/backend/controllers/openapi/openapi.go +++ b/src/backend/controllers/openapi/openapi.go @@ -14,7 +14,7 @@ // Schemes: https // Host: localhost // BasePath: /openapi/v1/gateway/action -// Version: 1.4.1 +// Version: 1.4.2 // // Consumes: // - application/json diff --git a/src/backend/main.go b/src/backend/main.go index b75933c48..dc85da6f7 100644 --- a/src/backend/main.go +++ b/src/backend/main.go @@ -4,7 +4,7 @@ import ( "github.com/Qihoo360/wayne/src/backend/cmd" ) -const Version = "1.4.1" +const Version = "1.4.2" func main() { cmd.Version = Version diff --git a/src/frontend/package.json b/src/frontend/package.json index 935e0a715..2f2825838 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "1.4.1", + "version": "1.4.2", "license": "MIT", "scripts": { "ng": "ng",