Skip to content
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
10 changes: 1 addition & 9 deletions .github/workflows/unlist-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@ name: Unlist NuGet

on:
workflow_dispatch:
inputs:
version:
description: 'Version to unlist'
required: true
type: string
# release:
# types: [deleted]

Expand All @@ -24,14 +19,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Debug version input
run: echo "Version to unlist: ${{ github.event.release.tag_name || github.event.inputs.version }}"

# Unlist
- name: Unlist Deleted Tag
uses: darenm/unlist-nuget@v1
with:
NUGET_PACKAGE: ${{ env.PROJECT_NAME }} # Full Package ID
VERSION_REGEX: ${{ github.event.release.tag_name || github.event.inputs.version }}
VERSION_REGEX: ${{ github.event.release.tag_name }}
NUGET_KEY: ${{ secrets.NUGET_API_KEY }} # nuget.org API key
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ Here is a performance comparison of various JSONPath queries on the standard boo
}
}
```

| Method | Mean | Error | StdDev | Gen0 | Gen1 | Allocated |
|------------------------ |----------:|----------:|----------:|-------:|-------:|----------:|
|`$..[?(@.price < 10)]`
Expand All @@ -106,15 +105,15 @@ Here is a performance comparison of various JSONPath queries on the standard boo
| Newtonsoft.JObject | 12.153 us | 2.4881 us | 0.1364 us | 2.1057 | 0.0763 | 25.86 KB |
| JsonEverything.JsonNode | 23.541 us | 1.3946 us | 0.0764 us | 3.9063 | 0.1221 | 48.15 KB |
| | | | | | | |
| `$..['bicycle','price']`
|`$..['bicycle','price']`
| JsonCraft.JsonElement | 3.136 us | 0.2760 us | 0.0151 us | 0.3242 | - | 4.01 KB |
| Hyperbee.JsonElement | 3.578 us | 0.4623 us | 0.0253 us | 0.4349 | 0.0038 | 5.37 KB |
| JsonCons.JsonElement | 3.948 us | 0.6099 us | 0.0334 us | 0.5798 | - | 7.18 KB |
| Hyperbee.JsonNode | 5.181 us | 1.8016 us | 0.0988 us | 0.7477 | 0.0076 | 9.23 KB |
| Newtonsoft.JObject | 7.823 us | 0.8017 us | 0.0439 us | 1.1749 | 0.0458 | 14.55 KB |
| JsonEverything.JsonNode | 16.753 us | 1.5507 us | 0.0850 us | 2.3193 | 0.0610 | 28.5 KB |
|
| ` $..*` | | | | | | |
| | | | | | | |
|`$..` | | | | | | |
| JsonCraft.JsonElement | 2.497 us | 0.0903 us | 0.0049 us | 0.2327 | - | 2.88 KB |
| Hyperbee.JsonElement | 3.299 us | 0.8178 us | 0.0448 us | 0.5302 | 0.0038 | 6.51 KB |
| JsonCons.JsonElement | 4.176 us | 0.5887 us | 0.0323 us | 0.6866 | - | 8.49 KB |
Expand Down
Loading