Skip to content

Commit 0e5262b

Browse files
authored
Merge pull request #1031 from mackerelio/bump-version-0.83.0
Release version 0.83.0
2 parents 2c9468a + c17b148 commit 0e5262b

File tree

5 files changed

+41
-2
lines changed

5 files changed

+41
-2
lines changed

CHANGELOG.md

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

3+
## 0.83.0 (2024-11-26)
4+
5+
* Bump github.com/mackerelio/mkr from 0.58.0 to 0.59.0 in /wix #1029 (dependabot[bot])
6+
* Bump github.com/mackerelio/mackerel-agent-plugins from 0.82.1 to 0.86.0 in /wix #1028 (dependabot[bot])
7+
* add mackerel-plugin-snmp and check-ping to Windows build. #1027 (kmuto)
8+
* fix lint error #1025 (rmatsuoka)
9+
* Write out error message when plugin seems have a bug #1024 (rmatsuoka)
10+
* Bump github.com/mackerelio/go-check-plugins from 0.46.3 to 0.47.0 in /wix #1022 (dependabot[bot])
11+
* Use Azure Trusted Signing for Windows installer code signing #1021 (yohfee)
12+
13+
314
## 0.82.0 (2024-06-13)
415

516
* go mod tidy on wix/ #1015 (yseto)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MACKEREL_AGENT_NAME ?= "mackerel-agent"
22
MACKEREL_API_BASE ?= "https://api.mackerelio.com"
3-
VERSION := 0.82.0
3+
VERSION := 0.83.0
44
CURRENT_REVISION := $(shell git rev-parse --short HEAD)
55
ARGS := "-conf=mackerel-agent.conf"
66
BUILD_OS_TARGETS := "linux darwin freebsd windows netbsd"

packaging/deb-systemd/debian/changelog

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
mackerel-agent (0.83.0-1.systemd) stable; urgency=low
2+
3+
* Bump github.com/mackerelio/mkr from 0.58.0 to 0.59.0 in /wix (by dependabot[bot])
4+
<https://github.com/mackerelio/mackerel-agent/pull/1029>
5+
* Bump github.com/mackerelio/mackerel-agent-plugins from 0.82.1 to 0.86.0 in /wix (by dependabot[bot])
6+
<https://github.com/mackerelio/mackerel-agent/pull/1028>
7+
* add mackerel-plugin-snmp and check-ping to Windows build. (by kmuto)
8+
<https://github.com/mackerelio/mackerel-agent/pull/1027>
9+
* fix lint error (by rmatsuoka)
10+
<https://github.com/mackerelio/mackerel-agent/pull/1025>
11+
* Write out error message when plugin seems have a bug (by rmatsuoka)
12+
<https://github.com/mackerelio/mackerel-agent/pull/1024>
13+
* Bump github.com/mackerelio/go-check-plugins from 0.46.3 to 0.47.0 in /wix (by dependabot[bot])
14+
<https://github.com/mackerelio/mackerel-agent/pull/1022>
15+
* Use Azure Trusted Signing for Windows installer code signing (by yohfee)
16+
<https://github.com/mackerelio/mackerel-agent/pull/1021>
17+
18+
-- mackerel <[email protected]> Tue, 26 Nov 2024 07:27:28 +0000
19+
120
mackerel-agent (0.82.0-1.systemd) stable; urgency=low
221

322
* go mod tidy on wix/ (by yseto)

packaging/rpm/mackerel-agent-systemd.spec

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,15 @@ systemctl enable %{name}.service
5454
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
5555

5656
%changelog
57+
* Tue Nov 26 2024 <[email protected]> - 0.83.0
58+
- Bump github.com/mackerelio/mkr from 0.58.0 to 0.59.0 in /wix (by dependabot[bot])
59+
- Bump github.com/mackerelio/mackerel-agent-plugins from 0.82.1 to 0.86.0 in /wix (by dependabot[bot])
60+
- add mackerel-plugin-snmp and check-ping to Windows build. (by kmuto)
61+
- fix lint error (by rmatsuoka)
62+
- Write out error message when plugin seems have a bug (by rmatsuoka)
63+
- Bump github.com/mackerelio/go-check-plugins from 0.46.3 to 0.47.0 in /wix (by dependabot[bot])
64+
- Use Azure Trusted Signing for Windows installer code signing (by yohfee)
65+
5766
* Thu Jun 13 2024 <[email protected]> - 0.82.0
5867
- go mod tidy on wix/ (by yseto)
5968
- go get -u github.com/mackerelio/mkr (by yseto)

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.82.0"
3+
const version = "0.83.0"
44

55
var gitcommit string

0 commit comments

Comments
 (0)