Skip to content

Commit

Permalink
Merge pull request #844 from mackerelio/bump-version-0.74.0
Browse files Browse the repository at this point in the history
Release version 0.74.0
  • Loading branch information
lufia authored Dec 20, 2022
2 parents da85fd5 + 08fefe9 commit fe3429e
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.74.0 (2022-12-20)

* [ci]fix timeout #843 (yseto)
* use ubuntu-20.04 #842 (yseto)
* refactor(config/validate): use `candidates` instead of `parentConfKeys` #839 (wafuwafu13)
* improve purge stage of Debian package to remove id file and keep custom files #837 (kmuto)
* fix(configtest): don't detect child key if parent key has already detected #832 (wafuwafu13)


## 0.73.3 (2022-11-09)

* Fix config test #830 (ryuichi1208)
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.73.3
VERSION := 0.74.0
CURRENT_REVISION := $(shell git rev-parse --short HEAD)
ARGS := "-conf=mackerel-agent.conf"
BUILD_OS_TARGETS := "linux darwin freebsd windows netbsd"
Expand Down
15 changes: 15 additions & 0 deletions packaging/deb-systemd/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
mackerel-agent (0.74.0-1.systemd) stable; urgency=low

* [ci]fix timeout (by yseto)
<https://github.com/mackerelio/mackerel-agent/pull/843>
* use ubuntu-20.04 (by yseto)
<https://github.com/mackerelio/mackerel-agent/pull/842>
* refactor(config/validate): use `candidates` instead of `parentConfKeys` (by wafuwafu13)
<https://github.com/mackerelio/mackerel-agent/pull/839>
* improve purge stage of Debian package to remove id file and keep custom files (by kmuto)
<https://github.com/mackerelio/mackerel-agent/pull/837>
* fix(configtest): don't detect child key if parent key has already detected (by wafuwafu13)
<https://github.com/mackerelio/mackerel-agent/pull/832>

-- mackerel <[email protected]> Tue, 20 Dec 2022 09:02:12 +0000

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

* Fix config test (by ryuichi1208)
Expand Down
15 changes: 15 additions & 0 deletions packaging/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
mackerel-agent (0.74.0-1) stable; urgency=low

* [ci]fix timeout (by yseto)
<https://github.com/mackerelio/mackerel-agent/pull/843>
* use ubuntu-20.04 (by yseto)
<https://github.com/mackerelio/mackerel-agent/pull/842>
* refactor(config/validate): use `candidates` instead of `parentConfKeys` (by wafuwafu13)
<https://github.com/mackerelio/mackerel-agent/pull/839>
* improve purge stage of Debian package to remove id file and keep custom files (by kmuto)
<https://github.com/mackerelio/mackerel-agent/pull/837>
* fix(configtest): don't detect child key if parent key has already detected (by wafuwafu13)
<https://github.com/mackerelio/mackerel-agent/pull/832>

-- mackerel <[email protected]> Tue, 20 Dec 2022 09:02:12 +0000

mackerel-agent (0.73.3-1) stable; urgency=low

* Fix config test (by ryuichi1208)
Expand Down
7 changes: 7 additions & 0 deletions packaging/rpm/mackerel-agent-systemd.spec
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ systemctl enable %{name}.service
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf

%changelog
* Tue Dec 20 2022 <[email protected]> - 0.74.0
- [ci]fix timeout (by yseto)
- use ubuntu-20.04 (by yseto)
- refactor(config/validate): use `candidates` instead of `parentConfKeys` (by wafuwafu13)
- improve purge stage of Debian package to remove id file and keep custom files (by kmuto)
- fix(configtest): don't detect child key if parent key has already detected (by wafuwafu13)

* Wed Nov 9 2022 <[email protected]> - 0.73.3
- Fix config test (by ryuichi1208)

Expand Down
7 changes: 7 additions & 0 deletions packaging/rpm/mackerel-agent.spec
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ fi
/usr/local/bin/%{name}

%changelog
* Tue Dec 20 2022 <[email protected]> - 0.74.0
- [ci]fix timeout (by yseto)
- use ubuntu-20.04 (by yseto)
- refactor(config/validate): use `candidates` instead of `parentConfKeys` (by wafuwafu13)
- improve purge stage of Debian package to remove id file and keep custom files (by kmuto)
- fix(configtest): don't detect child key if parent key has already detected (by wafuwafu13)

* Wed Nov 9 2022 <[email protected]> - 0.73.3
- Fix config test (by ryuichi1208)

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.73.3"
const version = "0.74.0"

var gitcommit string

0 comments on commit fe3429e

Please sign in to comment.