Skip to content

Commit

Permalink
Bump to 0.8.0-alpha-001
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed May 2, 2020
1 parent bcc8540 commit 2f873c4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Publish
if: github.event_name == 'push'
run: |
if ( "${{github.ref}}" -match "^refs/tags/[0-9]+\.[0-9]+\.[0-9]+$" ) {
if ( "${{github.ref}}" -match "^refs/tags/[0-9]+\.[0-9]+\.[0-9]+" ) {
dotnet nuget push src\${{env.PROJECT_NAME}}\bin\Release\*.nupkg -s nuget.org -k ${{secrets.NUGET_TOKEN}}
} else {
echo "publish is only enabled by tagging with a release tag"
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 0.8.0 (2 May 2020)
## 0.8.0-alpha-001 (2 May 2020)
- Use CLangSharp - libclang 10.0

## 0.7.3 (8 Mar 2020)
Expand Down
4 changes: 2 additions & 2 deletions src/CppAst/CppAst.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<VersionPrefix>0.8.0</VersionPrefix>
<!--<VersionSuffix>alpha</VersionSuffix>
<BuildNumber>001</BuildNumber>-->
<VersionSuffix>alpha</VersionSuffix>
<BuildNumber>001</BuildNumber>
<PackageId>CppAst</PackageId>
<Description>CppAst is a .NET library providing a C/C++ parser for header files with access to the full AST, comments and macros</Description>
<Copyright>Alexandre Mutel</Copyright>
Expand Down

0 comments on commit 2f873c4

Please sign in to comment.