Skip to content

Commit

Permalink
Prepare for release 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxAtoms committed Aug 14, 2021
1 parent dddaeeb commit f5a1b23
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## New feature

Individual Cell Providers can be activated and deactivated in the configuration
2 changes: 1 addition & 1 deletion src/RepoStatusTable/RepoStatusTable.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ToolCommandName>rst</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>

<PackageVersion>0.1.0</PackageVersion>
<PackageVersion>0.2</PackageVersion>
<Title>RepoStatusTable</Title>
<Authors>github.com/MaxAtoms</Authors>
<Description>Overview of the status of your repositories in tabular form</Description>
Expand Down
11 changes: 11 additions & 0 deletions src/RepoStatusTable/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,16 @@
"/path/to/a/repo/1",
"/path/to/a/repo/2"
]
},
"CellProviders": {
"DirectoryNameProvider": {
"Enable": false
},
"GitBranchProvider": {
"Enable": false
},
"GitStatusProvider": {
"Enable": false
}
}
}

0 comments on commit f5a1b23

Please sign in to comment.