Skip to content

Commit

Permalink
Merge pull request #1785 from buildkite/triarius/release/3.39.1
Browse files Browse the repository at this point in the history
Bump version and CHANGELOG for 3.39.1
  • Loading branch information
triarius authored Oct 14, 2022
2 parents b636765 + 3e32356 commit 05de75b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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).

## [v3.39.1](https://github.com/buildkite/agent/tree/v3.39.1) (2022-10-14)
[Full Changelog](https://github.com/buildkite/agent/compare/v3.39.0...v3.39.1)

### Security
- Fix security issue where in certain situations, agents using bash v5.2 could have some environment variables leak to job logs. See the [issue](https://github.com/buildkite/agent/issues/1780) and [our security advisory](https://buildkite.com/changelog/167-security-advisory-for-buildkite-agent-and-bash-5-dot-2) for more information. [#1781](https://github.com/buildkite/agent/pull/1781) (@moskyb + @triarius + @pda)

## [v3.39.0](https://github.com/buildkite/agent/tree/v3.39.0) (2022-09-08)
[Full Changelog](https://github.com/buildkite/agent/compare/v3.38.0...v3.39.0)

Expand Down
6 changes: 5 additions & 1 deletion agent/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ import "runtime"
//
// Pre-release builds' versions must be in the format `x.y-beta`, `x.y-beta.z` or `x.y-beta.z.a`

var baseVersion string = "3.39.0"
var baseVersion string = "3.39.1"

// This comment is needed to prevent formatters from combining this `var` with the one above
// a step in the pipeline parses this file (as text) for lines of the form `var baseVersion string = `
// See .builkite/steps/extract-base-version-metadata.sh:4
var buildVersion string = ""

func Version() string {
Expand Down

0 comments on commit 05de75b

Please sign in to comment.