Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stefansundin committed Feb 27, 2023
1 parent 079614b commit 895ca7e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 1.0.8
VERSION = 1.1.0
LDFLAGS = -ldflags '-s -w' -gcflags=-trimpath=${PWD} -asmflags=-trimpath=${PWD}

linux_amd64: export GOOS=linux
Expand Down
11 changes: 9 additions & 2 deletions debian/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
```
sudo apt install debhelper dh-golang golang golang-any golang-github-aws-aws-sdk-go-dev
sudo apt install devscripts debhelper dh-golang golang golang-any golang-github-aws-aws-sdk-go-dev
# in the repository root:
git clean -fdX
tar cvJf ../aws-rotate-key_1.0.8.orig.tar.xz --exclude=debian *
tar cvJf ../aws-rotate-key_1.1.0.orig.tar.xz --exclude=debian *
# build deb file:
debuild -i -us -uc -b
# publish to ppa:
debuild -S
cd ..
dput ppa:stefansundin/aws-rotate-key aws-rotate-key_1.1.0-1_source.changes
```
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
aws-rotate-key (1.1.0-1) jammy; urgency=medium

* Add support for multiple MFA devices.

-- Stefan Sundin <[email protected]> Sun, 26 Feb 2023 19:29:59 -0800

aws-rotate-key (1.0.8-4) bionic; urgency=medium

* Build on bionic.
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/aws/aws-sdk-go/service/sts"
)

const version = "1.0.8"
const version = "1.1.0"

func main() {
var yesFlag bool
Expand Down

0 comments on commit 895ca7e

Please sign in to comment.