diff --git a/CHANGELOG.md b/CHANGELOG.md index 6313091a..8ffdd5da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,11 @@ ## To be Released +## v1.0.3 - 14 Oct 2024 + * fix: bump graceful version to v1.2.0 to allow multiple http servers to be started with a single graceful service * fix(server version): update server version +* chore: bump various dependencies ## v1.0.2 - 28 Sep 2023 diff --git a/README.md b/README.md index 26829c3a..7c4cdf89 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Codeship Status for SAND](https://app.codeship.com/projects/3787f4e2-9515-4e36-aaa4-44d8e5bd1955/status?branch=master)](https://app.codeship.com/projects/425178) -# SAND Network Daemon V1.0.2 +# SAND Network Daemon V1.0.3 SAND is simple API designed to create overlay networks based on **[VXLAN](https://en.wikipedia.org/wiki/Virtual_Extensible_LAN)** in an infrastructure, basing its @@ -239,13 +239,13 @@ Bump new version number in: Commit the new version number: ```sh -version="1.0.2" +version="1.0.3" sed --in-place "s/var Version = \"v\([0-9.]*\)\"/var Version = \"v$version\"/g" config/config.go git switch --create release/${version} -git add CHANGELOG.md README.md -git commit -m "Bump v${version}" +git add CHANGELOG.md README.md config/config.go +git commit --message="Bump v${version}" git push --set-upstream origin release/${version} gh pr create --reviewer=leo-scalingo --title "$(git log -1 --pretty=%B)" ``` diff --git a/config/config.go b/config/config.go index 3f31e9a9..a8ffc2ec 100644 --- a/config/config.go +++ b/config/config.go @@ -9,7 +9,7 @@ import ( "github.com/pkg/errors" ) -var Version = "v1.0.2" +var Version = "v1.0.3" type Config struct { RollbarToken string