Skip to content

Commit

Permalink
Merge pull request #840 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 committed Dec 15, 2022
2 parents ad3d07b + 8d906ff commit 8a0dce6
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.74.0 (2022-12-14)

* 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
11 changes: 11 additions & 0 deletions packaging/deb-systemd/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
mackerel-agent (0.74.0-1.systemd) stable; urgency=low

* 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 <mackerel-developers@hatena.ne.jp> Wed, 14 Dec 2022 11:04:13 +0000

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

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

* 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 <mackerel-developers@hatena.ne.jp> Wed, 14 Dec 2022 11:04:13 +0000

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

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

%changelog
* Wed Dec 14 2022 <mackerel-developers@hatena.ne.jp> - 0.74.0
- 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 <mackerel-developers@hatena.ne.jp> - 0.73.3
- Fix config test (by ryuichi1208)

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

%changelog
* Wed Dec 14 2022 <mackerel-developers@hatena.ne.jp> - 0.74.0
- 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 <mackerel-developers@hatena.ne.jp> - 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 8a0dce6

Please sign in to comment.