Skip to content

Commit

Permalink
v3.2.0 (#258)
Browse files Browse the repository at this point in the history
* v3.2.0

* bump project version

* small RELEASE note tweaks
  • Loading branch information
Integralist authored Feb 4, 2021
1 parent daf0953 commit af10658
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [v3.2.0](https://github.com/fastly/go-fastly/releases/tag/v3.2.0) (2021-02-04)

[Full Changelog](https://github.com/fastly/go-fastly/compare/v3.1.0...v3.2.0)

**Enhancements:**

- Add more support for compression\_codec to logging endpoints [\#257](https://github.com/fastly/go-fastly/pull/257)

## [v3.1.0](https://github.com/fastly/go-fastly/releases/tag/v3.1.0) (2021-01-28)

[Full Changelog](https://github.com/fastly/go-fastly/compare/v3.0.0...v3.1.0)
Expand Down
6 changes: 3 additions & 3 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
* `git checkout -b vX.Y.Z` where `vX.Y.Z` is your target version tag
* `CHANGELOG_GITHUB_TOKEN=xxxx SEMVER_TAG=vX.Y.Z make changelog`
* **Known Issue**: We've found that the diffs generated are non-deterministic. Just re-run `make changelog` until you get a diff with just the newest additions. For more details, visit [this link](https://github.com/github-changelog-generator/github-changelog-generator/issues/580#issuecomment-380952266).
* `git add CHANGELOG.md && git commit -m "vX.Y.Z"`
1. Bump the project version in fastly/client.go
* Bump the project version in `fastly/client.go`
* `git add CHANGELOG.md fastly/client.go && git commit -m "vX.Y.Z"`
1. Send PR for the `CHANGELOG.md` and `client.go` changes.
1. Once approved and merged, checkout and update the `master` branch:
* `git checkout master`
* `git pull`
1. Create a new tag for `master`:
* `git tag -s vX.Y.Z -m "vX.Y.Z"`
1. Push the new tag:
* `git push upstream vX.Y.Z`
* `git push origin vX.Y.Z`
1. Under the repository name, click [Releases](https://github.com/fastly/go-fastly/releases)
1. Click [Draft a new release](https://github.com/fastly/go-fastly/releases/new)
* Select the new tag for the tag version
Expand Down
2 changes: 1 addition & 1 deletion fastly/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const DefaultRealtimeStatsEndpoint = "https://rt.fastly.com"
var ProjectURL = "github.com/fastly/go-fastly"

// ProjectVersion is the version of this library.
var ProjectVersion = "3.1.0"
var ProjectVersion = "3.2.0"

// UserAgent is the user agent for this particular client.
var UserAgent = fmt.Sprintf("FastlyGo/%s (+%s; %s)",
Expand Down

0 comments on commit af10658

Please sign in to comment.