diff --git a/.github_build/Build.alpine.env b/.github_build/Build.alpine.env index ced95107..fb9fe895 100644 --- a/.github_build/Build.alpine.env +++ b/.github_build/Build.alpine.env @@ -2,4 +2,4 @@ OS_NAME=alpine OS_VERSION=3.16 GOLANG_IMAGE=golang:1.20-alpine3.16 -CORE_VERSION=16.12.0 +CORE_VERSION=16.13.0 diff --git a/.github_build/Build.ubuntu.env b/.github_build/Build.ubuntu.env index 4e02a698..7372d1c2 100644 --- a/.github_build/Build.ubuntu.env +++ b/.github_build/Build.ubuntu.env @@ -2,4 +2,4 @@ OS_NAME=ubuntu OS_VERSION=20.04 GOLANG_IMAGE=golang:1.20-alpine3.16 -CORE_VERSION=16.12.0 +CORE_VERSION=16.13.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b9d3060..65739510 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Core -### Core v16.12.0 > v16.?.? +### Core v16.12.0 > v16.13.0 - Add PUT /api/v3/fs endpoint for file operations - Add GET /api/v3/process/:id/report query parameters for retrieving a specific report history entry diff --git a/app/version.go b/app/version.go index ec718dfd..3278e184 100644 --- a/app/version.go +++ b/app/version.go @@ -29,7 +29,7 @@ func (v versionInfo) MinorString() string { // Version of the app var Version = versionInfo{ Major: 16, - Minor: 12, + Minor: 13, Patch: 0, }