Skip to content

Commit

Permalink
Merge pull request #277 from Scalingo/release/1.0.3
Browse files Browse the repository at this point in the history
Bump v1.0.3
  • Loading branch information
EtienneM authored Oct 15, 2024
2 parents 8584d6e + ad59397 commit 2da5e73
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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)"
```
Expand Down
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/pkg/errors"
)

var Version = "v1.0.2"
var Version = "v1.0.3"

type Config struct {
RollbarToken string
Expand Down

0 comments on commit 2da5e73

Please sign in to comment.