Skip to content

Commit

Permalink
Update for v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasNieto committed Oct 8, 2024
1 parent 2080225 commit 0415976
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 11 deletions.
16 changes: 13 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,26 @@ 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
```

## Sample usages

### Get list of installed packages

```PowerShell
```powershell
Get-Package -Name *7zip*
```

### Uninstall package

```PowerShell
```powershell
Get-Package -Name *7zip* | Uninstall-Package
```
4 changes: 2 additions & 2 deletions src/AnyPackage.Programs.psd1
Original file line number Diff line number Diff line change
@@ -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 = @(
Expand Down
2 changes: 1 addition & 1 deletion src/code/ProgramsProvider.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net461</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Copyright2023 Thomas Nieto. All rights reserved.</Copyright>
<Copyright2024 Thomas Nieto. All rights reserved.</Copyright>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 0415976

Please sign in to comment.