Skip to content

Commit

Permalink
Release: updating module version (0.4.5.1) and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ninmonkey committed Dec 7, 2024
1 parent 0f31be3 commit 97154b3
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 47 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## ugit 0.4.5.1:

> Like It? [Star It](https://github.com/StartAutomating/ugit)
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
* `git log` fix duplicate commit issue ( #334 )
* Thanks @ninmonkey !

---

## ugit 0.4.5:

> Like It? [Star It](https://github.com/StartAutomating/ugit)
Expand Down
5 changes: 4 additions & 1 deletion Extensions/Git.Log.UGit.Extension.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,9 @@ end {
$commitStartLine = $lineIndex
}
}
OutGitLog $allInput[$commitStartLine..($allInput.Count - 1)]

if ( $commitStartLine -lt $allInput.Count ) {
OutGitLog $allInput[$commitStartLine..($allInput.Count - 1)]
}
$ExecutionContext.SessionState.PSVariable.Remove('script:LogChangesMerged')
}
49 changes: 3 additions & 46 deletions ugit.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -15,56 +15,13 @@ PrivateData = @{
LicenseURI = 'https://github.com/StartAutomating/ugit/blob/main/LICENSE'
BuildModule = @('EZOut', 'Piecemeal', 'PipeScript', 'PSSVG')
ReleaseNotes = @'
## ugit 0.4.5:
## ugit 0.4.5.1:
> Like It? [Star It](https://github.com/StartAutomating/ugit)
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
* git improvements
* `git clone`
* git clone -Since improvements (#276)
* git clone -Since time period (#277)
* `git log`
* git.log.Trailer (#305)
* git.log.Description (#304)
* git.log.Scope (#303)
* git.log.CommitType (#301)
* git.log.CommitDate (#309)
* git.log.Change(s) (#306)
* git.log.note(s) (#296)
* git log accumulation improvement (#308)
* git log parsing improvement (#306,#308,#309)
* git.log.JiraTicket(s) (#313)
* git log -TicketNumber(s) (#315)
* `git commit`
* git commit -OnBehalfOf (#275)
* git commit -CoAuthoredBy (#274)
* git commit -SkipCI (#320)
* Container improvements
* Container.init.ps1 (#279,#280)
* Container.start.ps1 (#281)
* Container.stop.ps1 (#282)
* Action improvements
* Refactoring ugit action (#289,#290)
* Testing action in branch (#288)
* New Parameters:
* `ActionScript` (#311)
* `GitHubToken` (#317)
* `NoCommit` (#318)
* `NoPush` (#319)
* `TargetBranch` (#316)
* Workflow improvements
* Fixing ugit workflow PublishTestResults (#287)
* GitPub cleanup (#310)
* New Examples:
* ChangesByCommitType example (#302, #301)
* ChangesByDayOfWeek example (#295)
* ChangesByIssueNumber example (#294)
* ChangesByUserName example (#293)
* ChangesByExtension example (#292)
* ReleaseNotes Example (#307)
* TableOfCurrentBranch example (#291)
* `git log` fix duplicate commit issue ( #334 )
* Thanks @ninmonkey !
---
Additional Changes in [Changelog](https://github.com/StartAutomating/ugit/blob/main/CHANGELOG.md)
Expand Down

0 comments on commit 97154b3

Please sign in to comment.