From f5a1b23fdd8ba186165fc728b4815bc8999e7909 Mon Sep 17 00:00:00 2001 From: MaxAtoms <7847075+MaxAtoms@users.noreply.github.com> Date: Sat, 14 Aug 2021 23:49:16 +0200 Subject: [PATCH] Prepare for release 0.2 --- .github/workflows/publish.yml | 1 + RELEASENOTES.md | 3 +++ src/RepoStatusTable/RepoStatusTable.csproj | 2 +- src/RepoStatusTable/config.json | 11 +++++++++++ 4 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 RELEASENOTES.md diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cbd16cb..aaea574 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -60,6 +60,7 @@ jobs: uses: ncipollo/release-action@v1 with: artifacts: ${{ env.RELEASE_ARCHIVE_PATH }}, ${{ env.RELEASE_NUPKG_PATH }} + bodyFile: RELEASENOTES.md token: ${{ secrets.GITHUB_TOKEN }} - name: Add GitHub NuGet registry as source diff --git a/RELEASENOTES.md b/RELEASENOTES.md new file mode 100644 index 0000000..d904e52 --- /dev/null +++ b/RELEASENOTES.md @@ -0,0 +1,3 @@ +## New feature + +Individual Cell Providers can be activated and deactivated in the configuration diff --git a/src/RepoStatusTable/RepoStatusTable.csproj b/src/RepoStatusTable/RepoStatusTable.csproj index d804842..4120d45 100644 --- a/src/RepoStatusTable/RepoStatusTable.csproj +++ b/src/RepoStatusTable/RepoStatusTable.csproj @@ -9,7 +9,7 @@ rst ./nupkg - 0.1.0 + 0.2 RepoStatusTable github.com/MaxAtoms Overview of the status of your repositories in tabular form diff --git a/src/RepoStatusTable/config.json b/src/RepoStatusTable/config.json index 0982709..988de14 100644 --- a/src/RepoStatusTable/config.json +++ b/src/RepoStatusTable/config.json @@ -7,5 +7,16 @@ "/path/to/a/repo/1", "/path/to/a/repo/2" ] + }, + "CellProviders": { + "DirectoryNameProvider": { + "Enable": false + }, + "GitBranchProvider": { + "Enable": false + }, + "GitStatusProvider": { + "Enable": false + } } }