Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 0.77.0 #911

Merged
merged 1 commit into from
Jun 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.77.0 (2023-06-14)

* fixed to log the key when metric parsing fails #909 (tukaelu)
* Bump github.com/BurntSushi/toml from 1.2.1 to 1.3.0 #907 (dependabot[bot])


## 0.76.0 (2023-05-31)

* added check-file-age on windows #903 (yseto)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MACKEREL_AGENT_NAME ?= "mackerel-agent"
MACKEREL_API_BASE ?= "https://api.mackerelio.com"
VERSION := 0.76.0
VERSION := 0.77.0
CURRENT_REVISION := $(shell git rev-parse --short HEAD)
ARGS := "-conf=mackerel-agent.conf"
BUILD_OS_TARGETS := "linux darwin freebsd windows netbsd"
Expand Down
9 changes: 9 additions & 0 deletions packaging/deb-systemd/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
mackerel-agent (0.77.0-1.systemd) stable; urgency=low

* fixed to log the key when metric parsing fails (by tukaelu)
<https://github.com/mackerelio/mackerel-agent/pull/909>
* Bump github.com/BurntSushi/toml from 1.2.1 to 1.3.0 (by dependabot[bot])
<https://github.com/mackerelio/mackerel-agent/pull/907>

-- mackerel <mackerel-developers@hatena.ne.jp> Wed, 14 Jun 2023 03:09:48 +0000

mackerel-agent (0.76.0-1.systemd) stable; urgency=low

* added check-file-age on windows (by yseto)
Expand Down
4 changes: 4 additions & 0 deletions packaging/rpm/mackerel-agent-systemd.spec
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ systemctl enable %{name}.service
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf

%changelog
* Wed Jun 14 2023 <mackerel-developers@hatena.ne.jp> - 0.77.0
- fixed to log the key when metric parsing fails (by tukaelu)
- Bump github.com/BurntSushi/toml from 1.2.1 to 1.3.0 (by dependabot[bot])

* Wed May 31 2023 <mackerel-developers@hatena.ne.jp> - 0.76.0
- added check-file-age on windows (by yseto)
- update Actions Runner Image of windows. (by yseto)
Expand Down
4 changes: 4 additions & 0 deletions packaging/rpm/mackerel-agent.spec
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ fi
/usr/local/bin/%{name}

%changelog
* Wed Jun 14 2023 <mackerel-developers@hatena.ne.jp> - 0.77.0
- fixed to log the key when metric parsing fails (by tukaelu)
- Bump github.com/BurntSushi/toml from 1.2.1 to 1.3.0 (by dependabot[bot])

* Wed May 31 2023 <mackerel-developers@hatena.ne.jp> - 0.76.0
- added check-file-age on windows (by yseto)
- update Actions Runner Image of windows. (by yseto)
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package main

const version = "0.76.0"
const version = "0.77.0"

var gitcommit string