Skip to content

Commit

Permalink
release: ugit 0.4.5
Browse files Browse the repository at this point in the history
Updating Version [0.4.5] and CHANGELOG.md
  • Loading branch information
James Brundage committed Oct 16, 2024
1 parent ef5b0ee commit fc8e344
Show file tree
Hide file tree
Showing 2 changed files with 100 additions and 26 deletions.
57 changes: 53 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,57 @@
## ugit 0.4.4:
## ugit 0.4.5:

> 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)

---

## ugit 0.4.4:

* ugit a container! (#262, #263, #264)
* `docker run --interactive --tty ghcr.io/startautomating/ugit`
* `git checkout` improvements
Expand All @@ -14,8 +63,8 @@
* `git checkout -FromBranch [string]` (#270)
* `git checkout -RevisionNumber/-ParentNumber [int]` (#271)
* `git sparse-checkout` improvements
* `git sparse-checkout -FileFilter [string[]]` ( Fixes #257 )
* `git sparse-checkout -DirectoryFilter [string[]]` ( Fixes #258 )
* `git sparse-checkout -FileFilter [string[]]` (#257)
* `git sparse-checkout -DirectoryFilter [string[]]` (#258)
* `git branch -Remote [switch]` (#185)
* `git config --list` outputs as objects (#265)
* `git --format json` outputs as objects (#239)
Expand Down Expand Up @@ -272,7 +321,7 @@ Also, some improvements to the GitHub Action:

## ugit 0.1.8:
* Adding Support for git checkout (#38)
* Use-Git: Avoiding unwanted confirmation ( Fixing #39 )
* Use-Git: Avoiding unwanted confirmation ( Fixing #39)

---

Expand Down
69 changes: 47 additions & 22 deletions ugit.psd1
Original file line number Diff line number Diff line change
@@ -1,44 +1,69 @@
@{
ModuleVersion = '0.4.4'
ModuleVersion = '0.4.5'
RootModule = 'ugit.psm1'
FormatsToProcess = 'ugit.format.ps1xml'
TypesToProcess = 'ugit.types.ps1xml'
Guid = '32323806-1d4a-485b-a64b-c502b0468847'
Author = 'James Brundage'
Copyright = '2022-2024 Start-Automating'
CompanyName = 'Start-Automating'
Description = 'ugit: Updated Git. Git gets better with PowerShell and the Object Pipeline.
ugit is a powerful PowerShell wrapper for git that lets you extend git, automate multiple repos, and use the object pipeline.
'
Description = 'ugit: git, updated with PowerShell'
PrivateData = @{
PSData = @{
Tags = 'PowerShell', 'git'
ProjectURI = 'https://github.com/StartAutomating/ugit'
LicenseURI = 'https://github.com/StartAutomating/ugit/blob/main/LICENSE'
BuildModule = @('EZOut', 'Piecemeal', 'PipeScript', 'PSSVG')
ReleaseNotes = @'
## ugit 0.4.4:
## ugit 0.4.5:
> Like It? [Star It](https://github.com/StartAutomating/ugit)
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
* ugit a container! (#262, #263, #264)
* `docker run --interactive --tty ghcr.io/startautomating/ugit`
* `git checkout` improvements
* `git checkout -PullRequest [int]` (#178)
* `git checkout -NewBranchName [string]` (#266)
* `git checkout -ResetBranchName [string]` (#267)
* `git checkout -Detach [switch]` (#268)
* `git checkout -ResetPath [string]` (#269)
* `git checkout -FromBranch [string]` (#270)
* `git checkout -RevisionNumber/-ParentNumber [int]` (#271)
* `git sparse-checkout` improvements
* `git sparse-checkout -FileFilter [string[]]` ( Fixes #257 )
* `git sparse-checkout -DirectoryFilter [string[]]` ( Fixes #258 )
* `git branch -Remote [switch]` (#185)
* `git config --list` outputs as objects (#265)
* `git --format json` outputs as objects (#239)
* 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)
---
Expand Down

0 comments on commit fc8e344

Please sign in to comment.