From 04159768fbcaa8c575320094d60c334d5a9e5b19 Mon Sep 17 00:00:00 2001
From: Thomas Nieto <38873752+ThomasNieto@users.noreply.github.com>
Date: Mon, 7 Oct 2024 19:04:26 -0500
Subject: [PATCH] Update for v0.3.2
---
CHANGELOG.md | 16 +++++++++++++---
LICENSE | 2 +-
README.md | 8 ++++----
src/AnyPackage.Programs.psd1 | 4 ++--
src/code/ProgramsProvider.csproj | 2 +-
5 files changed, 21 insertions(+), 11 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1c92364..2ebcaf9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,11 +2,20 @@
All notable changes to this project will be documented in this file.
-The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
-and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+The format is based on [Keep a Changelog][keep-a-changelog],
+and this project adheres to [Semantic Versioning][semver].
+
+[keep-a-changelog]: https://keepachangelog.com/en/1.0.0/
+[semver]: https://semver.org/spec/v2.0.0.html
## [Unreleased]
+## [0.3.2] - 2024-10-07
+
+### Fixed
+
+- Fix uninstall (#37)
+
## [0.3.1] - 2023-07-17
### Fixed
@@ -53,7 +62,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release
-[Unreleased]: https://github.com/anypackage/programs/compare/v0.3.1...HEAD
+[Unreleased]: https://github.com/anypackage/programs/compare/v0.3.2...HEAD
+[0.3.2]: https://github.com/anypackage/programs/releases/tag/v0.3.2
[0.3.1]: https://github.com/anypackage/programs/releases/tag/v0.3.1
[0.3.0]: https://github.com/anypackage/programs/releases/tag/v0.3.0
[0.2.2]: https://github.com/anypackage/programs/releases/tag/v0.2.2
diff --git a/LICENSE b/LICENSE
index 0fdf7f2..2cbcd05 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2023 Thomas Nieto
+Copyright (c) 2024 Thomas Nieto
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index f3b0f80..63bdc94 100644
--- a/README.md
+++ b/README.md
@@ -16,13 +16,13 @@ It shows applications that appear in Add/Remove Programs.
## Install AnyPackage.Programs
-```PowerShell
+```powershell
Install-PSResource AnyPackage.Programs
```
## Import AnyPackage.Programs
-```PowerShell
+```powershell
Import-Module AnyPackage.Programs
```
@@ -30,12 +30,12 @@ Import-Module AnyPackage.Programs
### Get list of installed packages
-```PowerShell
+```powershell
Get-Package -Name *7zip*
```
### Uninstall package
-```PowerShell
+```powershell
Get-Package -Name *7zip* | Uninstall-Package
```
diff --git a/src/AnyPackage.Programs.psd1 b/src/AnyPackage.Programs.psd1
index 6eedf62..3b0bb35 100644
--- a/src/AnyPackage.Programs.psd1
+++ b/src/AnyPackage.Programs.psd1
@@ -1,10 +1,10 @@
@{
RootModule = 'ProgramsProvider.dll'
- ModuleVersion = '0.3.1'
+ ModuleVersion = '0.3.2'
CompatiblePSEditions = @('Desktop', 'Core')
GUID = '84cf5334-85e0-4263-8471-60394099cefb'
Author = 'Thomas Nieto'
- Copyright = '(c) 2023 Thomas Nieto. All rights reserved.'
+ Copyright = '(c) 2024 Thomas Nieto. All rights reserved.'
Description = 'Windows programs provider for AnyPackage.'
PowerShellVersion = '5.1'
RequiredModules = @(
diff --git a/src/code/ProgramsProvider.csproj b/src/code/ProgramsProvider.csproj
index 4c98fa0..574589c 100644
--- a/src/code/ProgramsProvider.csproj
+++ b/src/code/ProgramsProvider.csproj
@@ -4,7 +4,7 @@
net461
latest
enable
- © 2023 Thomas Nieto. All rights reserved.
+ © 2024 Thomas Nieto. All rights reserved.