Skip to content

Commit 1099c14

Browse files
authored
Merge pull request #545 from mackerelio/bump-version-0.49.1
Release version 0.49.1
2 parents dba239e + e4ccaf3 commit 1099c14

7 files changed

Lines changed: 45 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.49.1 (2023-02-15)
4+
5+
* Bump alpine from 3.17.1 to 3.17.2 #544 (dependabot[bot])
6+
* Bump golang.org/x/oauth2 from 0.4.0 to 0.5.0 #543 (dependabot[bot])
7+
* Bump docker/setup-qemu-action from 1 to 2 #541 (dependabot[bot])
8+
* Bump actions/download-artifact from 2 to 3 #540 (dependabot[bot])
9+
* Bump peter-evans/repository-dispatch from 1 to 2 #539 (dependabot[bot])
10+
* Bump github.com/mackerelio/mackerel-agent from 0.74.1 to 0.75.0 #537 (dependabot[bot])
11+
12+
313
## 0.49.0 (2023-02-01)
414

515
* Bump docker/build-push-action from 2 to 3 #535 (dependabot[bot])

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
BIN := mkr
2-
VERSION := 0.49.0
2+
VERSION := 0.49.1
33
CURRENT_REVISION := $(shell git rev-parse --short HEAD)
44
BUILD_LDFLAGS := "-w -s -X main.gitcommit=$(CURRENT_REVISION)"
55

packaging/deb-v2/debian/changelog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
mkr (0.49.1-1.v2) stable; urgency=low
2+
3+
* Bump alpine from 3.17.1 to 3.17.2 (by dependabot[bot])
4+
<https://github.com/mackerelio/mkr/pull/544>
5+
* Bump golang.org/x/oauth2 from 0.4.0 to 0.5.0 (by dependabot[bot])
6+
<https://github.com/mackerelio/mkr/pull/543>
7+
* Bump docker/setup-qemu-action from 1 to 2 (by dependabot[bot])
8+
<https://github.com/mackerelio/mkr/pull/541>
9+
* Bump actions/download-artifact from 2 to 3 (by dependabot[bot])
10+
<https://github.com/mackerelio/mkr/pull/540>
11+
* Bump peter-evans/repository-dispatch from 1 to 2 (by dependabot[bot])
12+
<https://github.com/mackerelio/mkr/pull/539>
13+
* Bump github.com/mackerelio/mackerel-agent from 0.74.1 to 0.75.0 (by dependabot[bot])
14+
<https://github.com/mackerelio/mkr/pull/537>
15+
16+
-- mackerel <mackerel-developers@hatena.ne.jp> Wed, 15 Feb 2023 03:42:56 +0000
17+
118
mkr (0.49.0-1.v2) stable; urgency=low
219

320
* Bump docker/build-push-action from 2 to 3 (by dependabot[bot])

packaging/rpm/mkr-v2.spec

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ rm -f %{buildroot}%{_bindir}/%{name}
3535
%{_bindir}/%{name}
3636

3737
%changelog
38+
* Wed Feb 15 2023 <mackerel-developers@hatena.ne.jp> - 0.49.1
39+
- Bump alpine from 3.17.1 to 3.17.2 (by dependabot[bot])
40+
- Bump golang.org/x/oauth2 from 0.4.0 to 0.5.0 (by dependabot[bot])
41+
- Bump docker/setup-qemu-action from 1 to 2 (by dependabot[bot])
42+
- Bump actions/download-artifact from 2 to 3 (by dependabot[bot])
43+
- Bump peter-evans/repository-dispatch from 1 to 2 (by dependabot[bot])
44+
- Bump github.com/mackerelio/mackerel-agent from 0.74.1 to 0.75.0 (by dependabot[bot])
45+
3846
* Wed Feb 1 2023 <mackerel-developers@hatena.ne.jp> - 0.49.0
3947
- Bump docker/build-push-action from 2 to 3 (by dependabot[bot])
4048
- Bump docker/setup-buildx-action from 1 to 2 (by dependabot[bot])

packaging/rpm/mkr.spec

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@ rm -f %{buildroot}%{_bindir}/${name}
4141
%{_localbindir}/%{name}
4242

4343
%changelog
44+
* Wed Feb 15 2023 <mackerel-developers@hatena.ne.jp> - 0.49.1
45+
- Bump alpine from 3.17.1 to 3.17.2 (by dependabot[bot])
46+
- Bump golang.org/x/oauth2 from 0.4.0 to 0.5.0 (by dependabot[bot])
47+
- Bump docker/setup-qemu-action from 1 to 2 (by dependabot[bot])
48+
- Bump actions/download-artifact from 2 to 3 (by dependabot[bot])
49+
- Bump peter-evans/repository-dispatch from 1 to 2 (by dependabot[bot])
50+
- Bump github.com/mackerelio/mackerel-agent from 0.74.1 to 0.75.0 (by dependabot[bot])
51+
4452
* Wed Feb 1 2023 <mackerel-developers@hatena.ne.jp> - 0.49.0
4553
- Bump docker/build-push-action from 2 to 3 (by dependabot[bot])
4654
- Bump docker/setup-buildx-action from 1 to 2 (by dependabot[bot])

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package main
22

3-
const version = "0.49.0"
3+
const version = "0.49.1"
44

55
var gitcommit string

0 commit comments

Comments
 (0)