Skip to content

Commit

Permalink
Bump version and CHANGELOG for v5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lox committed May 5, 2019
1 parent 5fbcc6a commit c2b24b4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [v5.0.0](https://github.com/buildkite/buildkite-agent-metrics/tree/v5.0.0) (2019-05-05)
[Full Changelog](https://github.com/buildkite/buildkite-agent-metrics/compare/v4.1.2...v5.0.0)

### Changed
- Add BusyAgentPercentage metric [#80](https://github.com/buildkite/buildkite-agent-metrics/pull/80) (@arromer)
- Drop metrics with only queue dimension [#82](https://github.com/buildkite/buildkite-agent-metrics/pull/82) (@lox)
- Add WaitingJobsCount metric [#81](https://github.com/buildkite/buildkite-agent-metrics/pull/81) (@lox)
- Read AWS_REGION for cloudwatch, default to us-east-1 [#79](https://github.com/buildkite/buildkite-agent-metrics/pull/79) (@lox)
- Add a Dockerfile [#77](https://github.com/buildkite/buildkite-agent-metrics/pull/77) (@amalucelli)
- Enforce Buildkite-Agent-Metrics-Poll-Duration header [#83](https://github.com/buildkite/buildkite-agent-metrics/pull/83) (@lox)
- Add support for reading buildkite token from ssm [#76](https://github.com/buildkite/buildkite-agent-metrics/pull/76) (@arromer)
- Update bucket publishing for new regions [#74](https://github.com/buildkite/buildkite-agent-metrics/pull/74) (@lox)
- Update the readme to have the correct Environment variables and expla… [#73](https://github.com/buildkite/buildkite-agent-metrics/pull/73) (@bmbentson)

## [v4.1.3](https://github.com/buildkite/buildkite-agent-metrics/tree/v4.1.3) (2019-03-26)
[Full Changelog](https://github.com/buildkite/buildkite-agent-metrics/compare/v4.1.2...v4.1.3)

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,15 @@ Buildkite > (Org) > ScheduledJobsCount
Buildkite > (Org) > UnfinishedJobsCount
Buildkite > (Org) > IdleAgentsCount
Buildkite > (Org) > BusyAgentsCount
Buildkite > (Org) > BusyAgentPercentage
Buildkite > (Org) > TotalAgentsCount
Buildkite > (Org, Queue) > RunningJobsCount
Buildkite > (Org, Queue) > ScheduledJobsCount
Buildkite > (Org, Queue) > UnfinishedJobsCount
Buildkite > (Org, Queue) > IdleAgentsCount
Buildkite > (Org, Queue) > BusyAgentsCount
Buildkite > (Org, Queue) > BusyAgentPercentage
Buildkite > (Org, Queue) > TotalAgentsCount
```

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// Version the library version number
const Version = "4.1.3"
const Version = "5.0.0"

0 comments on commit c2b24b4

Please sign in to comment.