Skip to content

Commit

Permalink
Update for v0.3.0 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasNieto authored Jul 11, 2023
1 parent 64b5e44 commit 91883a4
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,12 @@ jobs:
- name: Install AnyPackage
run: Install-Module AnyPackage -Force -AllowClobber

- name: Install PSResourceGet
run: Install-Module Microsoft.PowerShell.PSResourceGet -Force -AllowClobber

- name: Publish Module
env:
NUGET_KEY: ${{ secrets.NUGET_KEY }}
run: Publish-Module -Name AnyPackage.PSResourceGet -NuGetApiKey $env:NUGET_KEY
run: |
$module = Get-Module AnyPackage.PSResourceGet -ListAvailable
Publish-PSResource $module.ModuleBase -NuGetApiKey $env:NUGET_KEY
23 changes: 17 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.4] - 2022-04-05
## [0.3.0] - 2023-07-11

### Changed

- Change project to PSResourceGet (#30)

### Fixed

- Fix Get-InstalledPSResource (#30)

## [0.2.4] - 2023-04-05

### Changed

- Change AnyPackage to 0.5.1 (#24)

## [0.2.3] - 2022-03-15
## [0.2.3] - 2023-03-15

### Fixed

- Fix dependency parsing (#22)
- Fix variable name (#21)

## [0.2.2] - 2022-03-03
## [0.2.2] - 2023-03-03

### Added

- Add available providers to module manifest (#19)

## [0.2.1] - 2022-02-13
## [0.2.1] - 2023-02-13

### Fixed

- Add Credential to missed cmdlets (#16)

## [0.2.0] - 2022-02-13
## [0.2.0] - 2023-02-13

### Added

Expand All @@ -50,7 +60,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[Unreleased]: https://github.com/AnyPackage/anypackage/psresourceget/compare/v0.2.4...HEAD
[Unreleased]: https://github.com/anypackage/psresourceget/compare/v0.2.4...HEAD
[0.3.0]: https://github.com/anypackage/psresourceget/releases/tag/v0.3.0
[0.2.4]: https://github.com/anypackage/psresourceget/releases/tag/v0.2.4
[0.2.3]: https://github.com/anypackage/psresourceget/releases/tag/v0.2.3
[0.2.2]: https://github.com/anypackage/psresourceget/releases/tag/v0.2.2
Expand Down
2 changes: 1 addition & 1 deletion src/AnyPackage.PSResourceGet.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
RootModule = 'AnyPackage.PSResourceGet.psm1'
ModuleVersion = '0.2.4'
ModuleVersion = '0.3.0'
CompatiblePSEditions = @('Desktop', 'Core')
GUID = '4ffeffd3-7f83-4655-ac94-19eb41ebc792'
Author = 'Thomas Nieto'
Expand Down

0 comments on commit 91883a4

Please sign in to comment.