Skip to content

Commit

Permalink
Update for v0.2.0 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasNieto authored Sep 17, 2024
1 parent 7a96d66 commit ddf814d
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 9 deletions.
54 changes: 54 additions & 0 deletions .markdownlint.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"code-block-style": {
"style": "fenced"
},
"code-fence-style": {
"style": "backtick"
},
"emphasis-style": {
"style": "asterisk"
},
"fenced-code-language": {
"allowed_languages": [
"powershell",
"text"
],
"language_only": true
},
"heading-style": {
"style": "atx"
},
"hr-style": {
"style": "---"
},
"line-length": {
"strict": true,
"code_blocks": false
},
"link-image-style": {
"collapsed": false,
"url_inline": false
},
"no-duplicate-heading": {
"siblings_only": true
},
"ol-prefix": {
"style": "ordered"
},
"proper-names": {
"code_blocks": false,
"names": [
"PowerShell",
"AnyPackage"
]
},
"reference-links-images": {
"shortcut_syntax": true
},
"strong-style": {
"style": "asterisk"
},
"ul-style": {
"style": "dash"
}
}
16 changes: 13 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,26 @@

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.2.0] - 2024-09-16

### Added

- Find-Package (#6)

## [0.1.0] - 2024-09-15

### Added

- Initial release

[Unreleased]: https://github.com/anypackage/scoop/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/anypackage/scoop/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/anypackage/scoop/releases/tag/v0.2.0
[0.1.0]: https://github.com/anypackage/scoop/releases/tag/v0.1.0
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
[build-site]: https://github.com/anypackage/pkgx/actions/workflows/ci.yml
[cf-site]: https://www.codefactor.io/repository/github/anypackage/pkgx

`AnyPackage.Pkgx` is an AnyPackage provider that facilitates installing `pkgx` packages.
`AnyPackage.Pkgx` is an AnyPackage provider that facilitates installing `pkgx`
packages.

## Requirements

Expand All @@ -20,26 +21,26 @@ instructions.

## Install AnyPackage.Pkgx

```PowerShell
```powershell
Install-PSResource AnyPackage.Pkgx
```

## Import AnyPackage.Pkgx

```PowerShell
```powershell
Import-Module AnyPackage.Pkgx
```

## Sample usages

### Install a package

```PowerShell
```powershell
Install-Package -Name node
```

### Uninstall a package

```PowerShell
```powershell
Uninstall-Package -Name node
```
2 changes: 1 addition & 1 deletion src/AnyPackage.Pkgx.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
RootModule = 'AnyPackage.Pkgx.psm1'
ModuleVersion = '0.1.0'
ModuleVersion = '0.2.0'
CompatiblePSEditions = @('Core')
GUID = 'a59c17ca-0cf1-4efc-b1b6-41f3b21c586e'
Author = 'Thomas Nieto'
Expand Down

0 comments on commit ddf814d

Please sign in to comment.