Skip to content

Commit 506ca86

Browse files
richlanderCopilot
andauthored
Release 0.7.2 — update embedded skill and version (#302)
* Change release environment to nuget Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Update SKILL.md and plugin.json to v0.7.1 Clarify markdown as default format with json, oneline, and plaintext as optional formats. Bump plugin.json version to 0.7.1. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Bump version to 0.7.2 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent c090d2e commit 506ca86

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "dotnet-inspect",
33
"description": "Inspect .NET assemblies and NuGet packages",
4-
"version": "0.6.9",
4+
"version": "0.7.2",
55
"author": {
66
"name": "Rich"
77
},

skills/dotnet-inspect/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: dotnet-inspect
3-
version: 0.7.1
3+
version: 0.7.2
44
description: Query .NET APIs across NuGet packages, platform libraries, and local files. Search for types, list API surfaces, compare and diff versions, find extension methods and implementors. Use whenever you need to answer questions about .NET library contents.
55
---
66

@@ -56,7 +56,7 @@ dnx dotnet-inspect -y -- type --package System.Text.Json # s
5656
dnx dotnet-inspect -y -- diff --package System.CommandLine@2.0.0-beta4.22272.1..2.0.3 # triage changes
5757
```
5858

59-
Four formatters: **markdown** (default), **oneline** (`--oneline`), **plaintext** (`--plaintext`), **json** (`--json`). Verbosity (`-v:q/m/n/d`) controls which sections are included; formatter controls how they render. They compose freely — except `--oneline` and `-v` cannot be combined.
59+
Default format is **markdown** — no flags needed. Optional formats: **oneline** (`--oneline`), **plaintext** (`--plaintext`), **json** (`--json`). Verbosity (`-v:q/m/n/d`) controls which sections are included; formatter controls how they render. They compose freely — except `--oneline` and `-v` cannot be combined.
6060

6161
```bash
6262
dnx dotnet-inspect -y -- member JsonSerializer --package System.Text.Json -v:d # detailed (source/IL)

src/dotnet-inspect/dotnet-inspect.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<Authors>Richard Lander</Authors>
2222
<PackAsTool>true</PackAsTool>
2323
<ToolCommandName>dotnet-inspect</ToolCommandName>
24-
<VersionPrefix>0.7.1</VersionPrefix>
24+
<VersionPrefix>0.7.2</VersionPrefix>
2525
<PackageId>dotnet-inspect</PackageId>
2626
<Description>A CLI tool for inspecting .NET assemblies and NuGet packages</Description>
2727
<PackageLicenseExpression>MIT</PackageLicenseExpression>

0 commit comments

Comments
 (0)