Skip to content

Commit 895ca7e

Browse files
committed
v1.1.0
1 parent 079614b commit 895ca7e

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 1.0.8
1+
VERSION = 1.1.0
22
LDFLAGS = -ldflags '-s -w' -gcflags=-trimpath=${PWD} -asmflags=-trimpath=${PWD}
33

44
linux_amd64: export GOOS=linux

debian/README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
```
2-
sudo apt install debhelper dh-golang golang golang-any golang-github-aws-aws-sdk-go-dev
2+
sudo apt install devscripts debhelper dh-golang golang golang-any golang-github-aws-aws-sdk-go-dev
33
44
# in the repository root:
55
git clean -fdX
6-
tar cvJf ../aws-rotate-key_1.0.8.orig.tar.xz --exclude=debian *
6+
tar cvJf ../aws-rotate-key_1.1.0.orig.tar.xz --exclude=debian *
7+
8+
# build deb file:
79
debuild -i -us -uc -b
10+
11+
# publish to ppa:
12+
debuild -S
13+
cd ..
14+
dput ppa:stefansundin/aws-rotate-key aws-rotate-key_1.1.0-1_source.changes
815
```

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
aws-rotate-key (1.1.0-1) jammy; urgency=medium
2+
3+
* Add support for multiple MFA devices.
4+
5+
-- Stefan Sundin <[email protected]> Sun, 26 Feb 2023 19:29:59 -0800
6+
17
aws-rotate-key (1.0.8-4) bionic; urgency=medium
28

39
* Build on bionic.

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"github.com/aws/aws-sdk-go/service/sts"
1818
)
1919

20-
const version = "1.0.8"
20+
const version = "1.1.0"
2121

2222
func main() {
2323
var yesFlag bool

0 commit comments

Comments
 (0)