diff --git a/CHANGELOG.md b/CHANGELOG.md index e94a072d1..57e36377a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## [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) + +**Fixed bugs:** + +- fix paginate page change [\#286](https://github.com/Qihoo360/wayne/pull/286) ([BennieMeng](https://github.com/BennieMeng)) +- Fix create or clone configtpl url redirect error [\#283](https://github.com/Qihoo360/wayne/pull/283) ([wilhelmguo](https://github.com/wilhelmguo)) + ## [v1.4.0](https://github.com/Qihoo360/wayne/tree/v1.4.0) (2019-02-15) [Full Changelog](https://github.com/Qihoo360/wayne/compare/v1.3.2...v1.4.0) diff --git a/src/backend/controllers/openapi/openapi.go b/src/backend/controllers/openapi/openapi.go index 57c0be641..285f215a2 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.0 +// Version: 1.4.1 // // Consumes: // - application/json diff --git a/src/backend/main.go b/src/backend/main.go index fdfea2b67..b75933c48 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.0" +const Version = "1.4.1" func main() { cmd.Version = Version diff --git a/src/frontend/package.json b/src/frontend/package.json index 7a3d17036..935e0a715 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "1.4.0", + "version": "1.4.1", "license": "MIT", "scripts": { "ng": "ng",