Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
stdcion committed Mar 13, 2023
1 parent d4da478 commit d678059
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Pack NuGet
run: dotnet pack -c Release --property:PackageOutputPath=artifacts/Packages
run: dotnet pack -c Release --property:PackageOutputPath=${{ github.workspace }}/artifacts/Packages

- name: Upload NuGet
run: |
Expand Down
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@

<!-- Versioning -->
<!-- Assembly version (System.Reflection.Assembly.GetExecutingAssembly()) -->
<AssemblyVersion>0.2.0</AssemblyVersion>
<AssemblyVersion>0.2.1</AssemblyVersion>
<!-- File (dll) version -->
<FileVersion>0.2.0.0</FileVersion>
<FileVersion>0.2.1.0</FileVersion>
<!-- NuGet (product) version -->
<Version>0.2.0</Version>
<Version>0.2.1</Version>
</PropertyGroup>

<ItemGroup Label="PackageIcon">
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ the [Overview](#overview) section.<br>
[![NET](https://img.shields.io/badge/.net%20version-net6.0-blueviolet)](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
![Platform](https://img.shields.io/badge/platform-win--x64%20%7C%20linux--x64%20%7C%20osx--x64%20%7C%20osx--arm64-lightgrey)
[![License](https://img.shields.io/badge/license-MPL--2.0-orange)](https://github.com/dxFeed/dxfeed-graal-net-api/blob/master/LICENSE)
[![Nuget](https://img.shields.io/badge/nuget-0.2.0-blue)](https://dxfeed.jfrog.io/artifactory/nuget-open/com/dxfeed/graal-net/)
[![Nuget](https://img.shields.io/badge/nuget-0.2.1-blue)](https://dxfeed.jfrog.io/artifactory/nuget-open/com/dxfeed/graal-net/)

## Table of Contents

Expand Down
8 changes: 8 additions & 0 deletions ReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## Version 0.2.1

## What's Changed
* Feature: Add CodeQL analysis CI/CD step
* Feature: Add DocFX generation
* Fix: Update readme
* Feature: Add docs (available at https://dxfeed.github.io/dxfeed-graal-net-api/)

## Version 0.2.0

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion pack.cmd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dotnet pack -c Release --property:PackageOutputPath=artifacts/Packages
dotnet pack -c Release -o artifacts/Packages
2 changes: 1 addition & 1 deletion pack.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
dotnet pack -c Release --property:PackageOutputPath=artifacts/Packages
dotnet pack -c Release -o artifacts/Packages

0 comments on commit d678059

Please sign in to comment.