From 04cf03a78525d0bbd3e51500c12e7d8909819f28 Mon Sep 17 00:00:00 2001 From: Noah Manneschmidt Date: Thu, 6 Oct 2022 14:27:40 -0700 Subject: [PATCH] Update extension name for publishing --- CHANGELOG.md | 4 ++-- NOTICE | 2 +- README.md | 10 +++++----- package.json | 8 ++++---- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11a47ac..dc53f7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log -All notable changes to the "vscode-codeowners" extension will be documented in this file according to recommendations of [Keep a Changelog](http://keepachangelog.com/). +All notable changes to the "codeowners-extended" extension will be documented in this file according to recommendations of [Keep a Changelog](http://keepachangelog.com/). -## [Unreleased] +## [v1.0.0] - 2022-10-06 - Initial public release - Parses codeowners files with additional team info comment block diff --git a/NOTICE b/NOTICE index 1dd3844..e161dc1 100644 --- a/NOTICE +++ b/NOTICE @@ -1,4 +1,4 @@ -VSCode Codeowners +Codeowners Extended Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. "Users" icon is provided by the Feather icons project under the MIT license. diff --git a/README.md b/README.md index ad2cac9..e696d4d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# vscode-codeowners +# codeowners-extended ## Features @@ -12,16 +12,16 @@ Also allows you to look up info for any team via a quick-search command. ## Installation -For now this has not been published to the public extenstion registry. -Download the latest release from the releases section to the right. Run `code --install-extension vscode-codeowners-X.X.X.vsix` -Or, from the "..." menu at the top of the extensions sidebar inside VS Code, pick "Install from VISX..." +The simplest way to install is from the official extension marketplace: https://marketplace.visualstudio.com/items?itemName=noahm.codeowners-extended + +Alternatively, download the latest release from the releases section here. Run `code --install-extension codeowners-extended-X.X.X.vsix` or, from the "..." menu at the top of the extensions sidebar inside VS Code, pick "Install from VISX..." ## Requirements Add a CODEOWNERS file to your project according to [Github documentation](https://help.github.com/articles/about-codeowners/) Team contact info will only be available for projects that include a structured contact info section -within its CODEOWNERS file according to the specs described [here](https://git-aws.internal.justin.tv/noahm/codeowners#library-usage). +within its CODEOWNERS file according to the specs described [here](https://github.com/noahm/codeowners#library-usage). ## Extension Settings diff --git a/package.json b/package.json index bf802c1..b0c171f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "vscode-codeowners", - "displayName": "Codeowners", + "name": "codeowners-extended", + "displayName": "Codeowners Extended", "description": "Brings the power of the codeowners file to your fingertips", "version": "1.0.0", "license": "Apache-2.0", @@ -10,10 +10,10 @@ }, "repository": { "type": "git", - "url": "https://github.com/noahm/vscode-codeowners.git" + "url": "https://github.com/noahm/codeowners-extended.git" }, "icon": "images/icon.png", - "publisher": "nmannesc", + "publisher": "noahm", "engines": { "vscode": "^1.27.0" },