Skip to content

Commit

Permalink
v1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mkht committed Dec 29, 2022
1 parent f2b5ba0 commit 4fdec91
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ You can manage PowerShell modules [npm](https://www.npmjs.com/) like commands.
----
## Requirements

+ Windows PowerShell 5.0 or higher
+ Windows PowerShell 5.1 or higher
+ PowerShell Core 6.0 or higher
+ Windows or macOS

Expand Down Expand Up @@ -391,8 +391,9 @@ This is valid `package.json` sample.

----
## Change log
+ **1.7.0**
+ **1.7.1**
- **NEW**: Add new syntax `pspm install <user>/<repo-name>#<ref>::path/to/subdir` for fetching subdirectories within github repos.
- Change minimum supported version of PowerShell to 5.1

+ **1.6.3**
- Fixed issue in error handling when downloading modules from GitHub in PowerShell 7.
Expand Down
25 changes: 14 additions & 11 deletions pspm.psd1
Original file line number Diff line number Diff line change
@@ -1,36 +1,39 @@
@{
# Version number of this module.
ModuleVersion = '1.7.0'
ModuleVersion = '1.7.1'

# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'

# ID used to uniquely identify this module
GUID = '43b54a10-c2d7-45b1-b46f-9a9da9da1c39'
GUID = '43b54a10-c2d7-45b1-b46f-9a9da9da1c39'

# Author of this module
Author = 'mkht'
Author = 'mkht'

# Script module or binary module file associated with this manifest.
RootModule = 'pspm.psm1'
RootModule = 'pspm.psm1'

# Company or vendor of this module
CompanyName = ''
CompanyName = ''

# Copyright statement for this module
Copyright = '(c) 2021 mkht. All rights reserved.'
Copyright = '(c) 2021 mkht. All rights reserved.'

# Description of the functionality provided by this module
Description = 'PowerShell Package Manager'
Description = 'PowerShell Package Manager'

# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.0'
PowerShellVersion = '5.1'

# Functions to export from this module
FunctionsToExport = @('pspm')
FunctionsToExport = @('pspm')

# Format files (.ps1xml) to be loaded when importing this module.
FormatsToProcess = @('./Class/pspm.SemVer.format.ps1xml')
FormatsToProcess = @('./Class/pspm.SemVer.format.ps1xml')

# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{
PrivateData = @{

PSData = @{

Expand Down

0 comments on commit 4fdec91

Please sign in to comment.