Skip to content

Commit 379354a

Browse files
author
Julien Castets
committed
Release v1.13
1 parent f7235db commit 379354a

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

MAINTAINERS.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,16 @@ For the sake of the example, we assume you want to release the version `42.8`.
1111

1212
### Commit release
1313

14-
* Edit the Changelog in [README.md](README.md), ensure it is up to date and
15-
fill the current date. Also update the link in the line "View full commits
16-
list": replace *master* with *v42.8*.
14+
* Edit the Changelog at the bottom of [README.md](README.md).
15+
16+
- Header: change the version from *v42.7* (or whatever is the previous
17+
version) to *v42.8*
18+
- Header: replace "unreleased" with the current date
19+
- Content: read commits history, and fill the changelog if it's not already
20+
done
21+
- Footer: edit the "View full commit list" link from */compare/v42.7..master*
22+
to */compare/v42.8..v42.7*
23+
1724
* Edit [pkg/scwversion/version.go](pkg/scwversion/version.go) and update the
1825
*VERSION* to *v42.8*.
1926
* Make the commit release: `git commit -m 'Release v42.8'`.

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,13 +1200,14 @@ $ scw inspect myserver | jq '.[0].public_ip.address'
12001200

12011201
## Changelog
12021202

1203-
### v1.12+dev (unreleased)
1203+
### v1.13 (2017-05-10)
12041204

1205-
This is the current development version. Update below with your changes. Remove
1206-
this line when releasing the package.
12071205
* Add new ARM64 offers
1206+
* For scaleway-cli developers: build time is improved, and standard tools are
1207+
used to cross-compile the project
1208+
* Ask two-factor authentication token on `scw login`
12081209

1209-
View full [commits list](https://github.com/scaleway/scaleway-cli/compare/v1.12...master)
1210+
View full [commits list](https://github.com/scaleway/scaleway-cli/compare/v1.13...v1.12)
12101211

12111212
### v1.12 (2017-03-30)
12121213

pkg/scwversion/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import "fmt"
44

55
var (
66
// VERSION represents the semver version of the package
7-
VERSION = "v1.12+dev"
7+
VERSION = "v1.13"
88

99
// GITCOMMIT represents the git commit hash of the package, it is configured at build time
1010
GITCOMMIT string

0 commit comments

Comments
 (0)