diff --git a/.markdownlint.jsonc b/.markdownlint.jsonc new file mode 100644 index 0000000..853ed89 --- /dev/null +++ b/.markdownlint.jsonc @@ -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" + } +} diff --git a/CHANGELOG.md b/CHANGELOG.md index e3dcc5a..77573ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [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 diff --git a/README.md b/README.md index 22ef039..20d0d10 100644 --- a/README.md +++ b/README.md @@ -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 @@ -20,13 +21,13 @@ instructions. ## Install AnyPackage.Pkgx -```PowerShell +```powershell Install-PSResource AnyPackage.Pkgx ``` ## Import AnyPackage.Pkgx -```PowerShell +```powershell Import-Module AnyPackage.Pkgx ``` @@ -34,12 +35,12 @@ Import-Module AnyPackage.Pkgx ### Install a package -```PowerShell +```powershell Install-Package -Name node ``` ### Uninstall a package -```PowerShell +```powershell Uninstall-Package -Name node ``` diff --git a/src/AnyPackage.Pkgx.psd1 b/src/AnyPackage.Pkgx.psd1 index 1414cd9..5ef5caa 100644 --- a/src/AnyPackage.Pkgx.psd1 +++ b/src/AnyPackage.Pkgx.psd1 @@ -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'