Skip to content

Commit

Permalink
cut release v0.13.0 (#944)
Browse files Browse the repository at this point in the history
  • Loading branch information
balopat authored Aug 30, 2018
1 parent 61a96ad commit 3cfdf89
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 3 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
# v0.13.0 Release - 8/16/2018

New Features:
* Add --tail flag to stream logs with skaffold run [#914](https://github.com/GoogleContainerTools/skaffold/pull/914)
* Add DEVELOPMENT.md [#901](https://github.com/GoogleContainerTools/skaffold/pull/901)

Bug Fixes:
* fixes `skaffold version` in the released docker image [#933](https://github.com/GoogleContainerTools/skaffold/pull/933)

Updates:
* as a base for future features - global skaffold config [#896](https://github.com/GoogleContainerTools/skaffold/pull/896)
* Remove duplication in kustomize deployer [#900](https://github.com/GoogleContainerTools/skaffold/pull/900)
* update readme with documentation links [#908](https://github.com/GoogleContainerTools/skaffold/pull/908)
* Fix a typo in "annotated-skaffold.yaml" [#907](https://github.com/GoogleContainerTools/skaffold/pull/907)
* Decouple visiting manifests and replacing images [#909](https://github.com/GoogleContainerTools/skaffold/pull/909)
* Add a simple test for Watcher [#898](https://github.com/GoogleContainerTools/skaffold/pull/898)
* Add test for signal handling [#917](https://github.com/GoogleContainerTools/skaffold/pull/917)
* Add the --target flag as a parameter to the docker builder. [#894](https://github.com/GoogleContainerTools/skaffold/pull/894)
* Misc improvements [#911](https://github.com/GoogleContainerTools/skaffold/pull/911)
* Add --tail flag to stream logs with skaffold run [#914](https://github.com/GoogleContainerTools/skaffold/pull/914)
* Extract code to tail logs [#924](https://github.com/GoogleContainerTools/skaffold/pull/924)
* Improve logs [#918](https://github.com/GoogleContainerTools/skaffold/pull/918)
* Add yamltags [#388](https://github.com/GoogleContainerTools/skaffold/pull/388)
* adding wrapper script for release note generation [#935](https://github.com/GoogleContainerTools/skaffold/pull/935)
* detete -> delete [#941](https://github.com/GoogleContainerTools/skaffold/pull/941)


# v0.12.0 Release - 8/16/2018
New Features:
* Update check [#866](https://github.com/GoogleContainerTools/skaffold/pull/866)
Expand Down
11 changes: 8 additions & 3 deletions hack/release_notes/listpullreqs.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,20 @@ func printPullRequests() {

repositoryCommits := comparison.Commits

re := regexp.MustCompile("Merge pull request #(.*) from.*")
mergeRe := regexp.MustCompile("Merge pull request #(.*) from.*")
pullRequestCommitRe := regexp.MustCompile(`.* \(#(.*)\)`)
for idx := range repositoryCommits {
commit := repositoryCommits[idx]
msg := *commit.Commit.Message
match := re.FindStringSubmatch(msg)
match := mergeRe.FindStringSubmatch(msg)
if match == nil {
continue
match = pullRequestCommitRe.FindStringSubmatch(msg)
if match == nil {
continue
}
}
prID, _ := strconv.Atoi(match[1])

pullRequest, _, _ := client.PullRequests.Get(context.Background(), org, repo, prID)
fmt.Printf("* %s [#%d](https://github.com/%s/%s/pull/%d)\n", pullRequest.GetTitle(), prID, org, repo, prID)
}
Expand Down

0 comments on commit 3cfdf89

Please sign in to comment.