Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for v0.2.0 #7

Merged
merged 2 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading