diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 76206bc..6b0778f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,5 +53,5 @@ jobs: goarch: ${{ matrix.goarch }} project_path: ./cmd/h2static binary_name: h2static - extra_files: CHANGES.md LICENSE logo.svg README.md + extra_files: CHANGES.md LICENSE server/assets/logo.svg README.md sha256sum: true diff --git a/CHANGES.md b/CHANGES.md index 3b4daeb..280b471 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,8 +1,16 @@ +v2.3.3 - 2021-06-05 +=================== + +* Move assets and templates out of code, include them using the `embed` module +* Require Go 1.16 (for `embed`) +* Add favicon + + v2.3.2 - 2021-04-10 =================== -- Change licence to EUPL-1.2 -- [gh] Fix action to build release binaries +* Change licence to EUPL-1.2 +* [gh] Fix action to build release binaries v2.3.1 - 2021-04-10 diff --git a/version/version.go b/version/version.go index e0f3f02..be0a6b1 100644 --- a/version/version.go +++ b/version/version.go @@ -10,5 +10,5 @@ type Version struct { // App defines The application version. var App = Version{ Name: "h2static", - Version: "2.3.2", + Version: "2.3.3", }