Skip to content

Commit 980fd2e

Browse files
authored
Update for v0.2.1 (#20)
1 parent e518ada commit 980fd2e

File tree

3 files changed

+24
-13
lines changed

3 files changed

+24
-13
lines changed

CHANGELOG.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,20 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5+
The format is based on [Keep a Changelog][keep-a-changelog],
6+
and this project adheres to [Semantic Versioning][semver].
7+
8+
[keep-a-changelog]: https://keepachangelog.com/en/1.0.0/
9+
[semver]: https://semver.org/spec/v2.0.0.html
710

811
## [Unreleased]
912

13+
## [0.2.1] - 2024-8-15
14+
15+
### Removed
16+
17+
- Remove Invoke-Expression (#18)
18+
1019
## [0.2.0] - 2024-8-15
1120

1221
### Added
@@ -35,7 +44,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3544

3645
- Initial release
3746

38-
[Unreleased]: https://github.com/ThomasNieto/Scoop/compare/v0.2.0...HEAD
47+
[Unreleased]: https://github.com/ThomasNieto/Scoop/compare/v0.2.1...HEAD
48+
[0.2.1]: https://github.com/ThomasNieto/Scoop/releases/tag/v0.2.1
3949
[0.2.0]: https://github.com/ThomasNieto/Scoop/releases/tag/v0.2.0
4050
[0.1.3]: https://github.com/ThomasNieto/Scoop/releases/tag/v0.1.3
4151
[0.1.2]: https://github.com/ThomasNieto/Scoop/releases/tag/v0.1.2

README.md

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Scoop
22

3-
A PowerShell module wrapper for Scoop using PowerShell best practices.
3+
An unofficial PowerShell module wrapper for Scoop using PowerShell best
4+
practices.
45

56
## Installing Scoop
67

@@ -12,11 +13,11 @@ Install-PSResource -Name Scoop
1213

1314
## Cmdlets
1415

15-
* `Find-ScoopApp`
16-
* `Get-ScoopApp`
17-
* `Install-ScoopApp`
18-
* `Uninstall-ScoopApp`
19-
* `Update-ScoopApp`
20-
* `Get-ScoopBucket`
21-
* `Register-ScoopBucket`
22-
* `Unregister-ScoopBucket`
16+
- `Find-ScoopApp`
17+
- `Get-ScoopApp`
18+
- `Install-ScoopApp`
19+
- `Uninstall-ScoopApp`
20+
- `Update-ScoopApp`
21+
- `Get-ScoopBucket`
22+
- `Register-ScoopBucket`
23+
- `Unregister-ScoopBucket`

src/Scoop.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
RootModule = 'Scoop.psm1'
3-
ModuleVersion = '0.2.0'
3+
ModuleVersion = '0.2.1'
44
CompatiblePSEditions = @('Desktop', 'Core')
55
GUID = '7603664e-144c-4083-a51d-399df057a37d'
66
Author = 'Thomas Nieto'

0 commit comments

Comments
 (0)