Skip to content

Commit b900ce3

Browse files
committed
Release notes for v0.6.1
1 parent c97337b commit b900ce3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

build/Get-PRHistory.ps1

+1-4
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,12 @@ $gitParams = @(
7979
'--first-parent'
8080
"$CommitID..$HeadCommitID"
8181
'--format="%H"'
82-
'--'
83-
'.'
84-
'":(exclude)*.md"'
8582
)
8683
$commits = & git @gitParams
8784

8885
$prs = @()
8986
foreach ($commit in $commits) {
90-
$result = Invoke-RestMethod @RequestParams -Uri "https://api.github.com/search/issues?q=$($commit)is%3Amerged"
87+
$result = Invoke-RestMethod @RequestParams -Uri "https://api.github.com/search/issues?q=$($commit)+is%3Amerged+is%3Apr"
9188
if ($result.total_count -gt 0) {
9289
$prs += $result.items | Sort-Object -Property score -Descending | Select-Object -First 1
9390
}

docs/changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Release notes for v0.6.1:
2+
- ### Files in subfolders are not being added when -Match is used (#104) by @nvarscar
3+
------
4+
* Folders are no longer filtered out by the -Match regex string
15
# Release notes for v0.6.0:
26
- ### Adding prescripts and postscripts (#91) by @nvarscar
37
------

0 commit comments

Comments
 (0)