Skip to content

Commit 2704f24

Browse files
shmuelieCopilot
andauthored
Release Shmuelie.Git 0.2.0, Shmuelie.Copilot 0.1.1, Shmuelie.Utilities 0.2.0 (#15)
Cut releases for the three modules with unreleased changes. Bump each ModuleVersion and README/doc version, and move the [Unreleased] notes into dated sections: - Shmuelie.Git 0.1.0 -> 0.2.0 (adds Format-GitStatusSegment; fixes cross-platform paths in Get-GitStatusSummary, worktree predictor thread-safety/GUID, and Find-StaleBranch argument-injection hardening). - Shmuelie.Utilities 0.1.0 -> 0.2.0 (adds Format-Duration). - Shmuelie.Copilot 0.1.0 -> 0.1.1 (fixes Get-CopilotLaunchPlan -SessionId auto-resume behavior). Shmuelie.Node has no unreleased changes and stays at 0.1.0. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 05711cdf-350d-4a24-a3d7-3217c0b193f3
1 parent bb45a57 commit 2704f24

11 files changed

Lines changed: 18 additions & 12 deletions

File tree

‎docs/index.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ install and upgrade each module on its own.
1515

1616
| Module | Description | Version |
1717
|---|---|---|
18-
| [Shmuelie.Git](modules.md#shmuelie-git) | Git worktrees, layout, status, completion, and prediction | 0.1.0 |
19-
| [Shmuelie.Copilot](modules.md#shmuelie-copilot) | Copilot CLI sessions, plugins, marketplaces, MCP, and launcher | 0.1.0 |
18+
| [Shmuelie.Git](modules.md#shmuelie-git) | Git worktrees, layout, status, completion, and prediction | 0.2.0 |
19+
| [Shmuelie.Copilot](modules.md#shmuelie-copilot) | Copilot CLI sessions, plugins, marketplaces, MCP, and launcher | 0.1.1 |
2020
| [Shmuelie.Node](modules.md#shmuelie-node) | Node.js, nvm-windows, npm, and ADO npm credentials | 0.1.0 |
21-
| [Shmuelie.Utilities](modules.md#shmuelie-utilities) | .NET, Python, VS Code, Terminal, services, and WPR | 0.1.0 |
21+
| [Shmuelie.Utilities](modules.md#shmuelie-utilities) | .NET, Python, VS Code, Terminal, services, and WPR | 0.2.0 |
2222

2323
## Quick start
2424

‎docs/modules.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Each module is self-contained and independently versioned.
1111
## Shmuelie.Git
1212

1313
Git repository, worktree, status, completion, and PSReadLine prediction helpers.
14-
**Version 0.1.0.**
14+
**Version 0.2.0.**
1515
[README](https://github.com/shmuelie/powershell-modules/blob/main/modules/Shmuelie.Git/README.md)
1616

1717
Highlights:
@@ -25,7 +25,7 @@ Highlights:
2525
## Shmuelie.Copilot
2626

2727
GitHub Copilot CLI sessions, plugins, marketplaces, MCP servers, and the
28-
`Start-Copilot` launcher. **Version 0.1.0.**
28+
`Start-Copilot` launcher. **Version 0.1.1.**
2929
[README](https://github.com/shmuelie/powershell-modules/blob/main/modules/Shmuelie.Copilot/README.md)
3030

3131
Highlights:
@@ -57,7 +57,7 @@ Highlights:
5757
## Shmuelie.Utilities
5858

5959
General developer utilities for PowerShell, .NET tools, Python packages, VS
60-
Code, Windows Terminal, services, applications, and WPR. **Version 0.1.0.**
60+
Code, Windows Terminal, services, applications, and WPR. **Version 0.2.0.**
6161
[README](https://github.com/shmuelie/powershell-modules/blob/main/modules/Shmuelie.Utilities/README.md)
6262

6363
Highlights:

‎modules/Shmuelie.Copilot/CHANGELOG.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Versions change only when a release is cut; unreleased work stays under
66

77
## [Unreleased]
88

9+
## [0.1.1] - 2026-08-12
10+
911
### Fixed
1012
- `Get-CopilotLaunchPlan -SessionId` no longer triggers the automatic
1113
session-resume picker or emits a conflicting `--resume` alongside

‎modules/Shmuelie.Copilot/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
GitHub Copilot CLI session, plugin, marketplace, and MCP helpers, plus the
44
`Start-Copilot` launcher. Depends only on the public `copilot` executable.
55

6-
**Version:** 0.1.0
6+
**Version:** 0.1.1
77

88
## Install
99

‎modules/Shmuelie.Copilot/Shmuelie.Copilot.psd1‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
RootModule = 'Shmuelie.Copilot.psm1'
3-
ModuleVersion = '0.1.0'
3+
ModuleVersion = '0.1.1'
44
GUID = 'f7928388-cc43-454f-8265-a7e1664422dd'
55
Author = 'Shmueli Englard'
66
CompanyName = 'Shmuelie'

‎modules/Shmuelie.Git/CHANGELOG.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Versions change only when a release is cut; unreleased work stays under
66

77
## [Unreleased]
88

9+
## [0.2.0] - 2026-08-12
10+
911
### Added
1012
- `Format-GitStatusSegment` — render a `GitStatusSummary` (from
1113
`Get-GitStatusSummary`) as a colored posh-git-style prompt segment

‎modules/Shmuelie.Git/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Git repository, worktree, status, completion, and PSReadLine prediction helpers.
44

5-
**Version:** 0.1.0
5+
**Version:** 0.2.0
66

77
## Install
88

‎modules/Shmuelie.Git/Shmuelie.Git.psd1‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
RootModule = 'Shmuelie.Git.psm1'
3-
ModuleVersion = '0.1.0'
3+
ModuleVersion = '0.2.0'
44
GUID = 'c94a90e6-22f7-44b9-9db0-fdf51f245693'
55
Author = 'Shmueli Englard'
66
CompanyName = 'Shmuelie'

‎modules/Shmuelie.Utilities/CHANGELOG.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Versions change only when a release is cut; unreleased work stays under
66

77
## [Unreleased]
88

9+
## [0.2.0] - 2026-08-12
10+
911
### Added
1012
- `Format-Duration` — format a `TimeSpan` as a compact duration string that
1113
scales with length (`H:MM:SS.mmm`, `M:SS.mmm`, or `<seconds> seconds`), with no

‎modules/Shmuelie.Utilities/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ General developer utilities for PowerShell, .NET tools, Python packages, VS
44
Code, Windows Terminal, Windows services, installed applications, and WPR
55
tracing.
66

7-
**Version:** 0.1.0
7+
**Version:** 0.2.0
88

99
## Install
1010

0 commit comments

Comments
 (0)