Skip to content

Commit

Permalink
Bumped the version for 10.3.3 and updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
zezha-msft committed Dec 11, 2019
1 parent 97d2c7f commit bff997c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

1. `azcopy list` is now supported on Azure Files and ADLS Gen 2, in addition to Blob Storage.
1. The `--exclude-path` flag is now supported in the `sync` command.
1. Added new environment variable `AZCOPY_USER_AGENT_PREFIX` to allow a prefix to be appended to the user agent strings.

### Bug fixes

Expand Down
2 changes: 1 addition & 1 deletion common/environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,6 @@ func (EnvironmentVariable) DefaultServiceApiVersion() EnvironmentVariable {
func (EnvironmentVariable) UserAgentPrefix() EnvironmentVariable {
return EnvironmentVariable{
Name: "AZCOPY_USER_AGENT_PREFIX",
Description: "Add a prefix to the default AzCopy User Agent, which is used for telemetry purposes.",
Description: "Add a prefix to the default AzCopy User Agent, which is used for telemetry purposes. A space is automatically inserted.",
}
}
2 changes: 1 addition & 1 deletion common/version.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package common

const AzcopyVersion = "10.3.2"
const AzcopyVersion = "10.3.3"
const UserAgent = "AzCopy/" + AzcopyVersion
const S3ImportUserAgent = "S3Import " + UserAgent
const BenchmarkUserAgent = "Benchmark " + UserAgent

0 comments on commit bff997c

Please sign in to comment.