Skip to content

Commit a2495a8

Browse files
authored
Merge pull request smartsheet#5 from smartsheet/preparing-v3.0.0
chore: preparing v3.0.0 release
2 parents 7b49651 + 3ede7db commit a2495a8

File tree

3 files changed

+12
-15
lines changed

3 files changed

+12
-15
lines changed

.github/workflows/publish.yml

+2-13
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,6 @@ jobs:
5151
- name: Package
5252
working-directory: ./smartsheet-csharp-sdk
5353
run: dotnet pack smartsheet-csharp-sdk-v2.csproj --no-build --configuration Release --include-symbols -p:SymbolPackageFormat=snupkg -o .
54-
- name: Publish to Nuget Test
54+
- name: Publish to Nuget
5555
working-directory: ./smartsheet-csharp-sdk
56-
run: dotnet nuget push *.nupkg --api-key ${{secrets.NUGET_TOKEN}} --source "https://api.nugettest.org/v3/index.json" --skip-duplicate
57-
#- name: Publish to GitHub
58-
#working-directory: ./smartsheet-csharp-sdk
59-
#run: dotnet nuget push *.nupkg --api-key ${{secrets.SDK_TEST_ACCESS_TOKEN}} --source "https://nuget.pkg.github.com/lifebeyondfife/index.json" --skip-duplicate
60-
#- name: Publish to Nuget
61-
#working-directory: ./smartsheet-csharp-sdk
62-
#run: dotnet nuget push *.nupkg --api-key ${{secrets.NUGET_TOKEN}} --source "https://api.nuget.org/v3/index.json" --skip-duplicate
63-
#- name: Create Tag
64-
#working-directory: ./smartsheet-csharp-sdk
65-
#run: |
66-
#git tag v${{steps.package_version.outputs.version}}
67-
#git push origin v${{steps.package_version.outputs.version}}
56+
run: dotnet nuget push *.nupkg --api-key ${{secrets.NUGET_TOKEN}} --source "https://api.nuget.org/v3/index.json" --skip-duplicate

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [3.0.0] - 2022-12-07
10+
### Updated
11+
- Migrated SDK to new project
12+
- Migrated SDK to .Net 6.0
13+
14+
### Added
15+
- Add Github Actions pipeline
16+
917
## [2.126.0] - 2021-05-24
1018
### Added
1119
- add support for column formulas

smartsheet-csharp-sdk/smartsheet-csharp-sdk-v2.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<Authors>Smartsheet</Authors>
1818
<Product>smartsheet-csharp-sdk</Product>
1919
<PackageTags>Smartsheet Collaboration Project Management Excel spreadsheet</PackageTags>
20-
<Version>2.126.0</Version>
20+
<Version>3.0.0</Version>
2121
<AssemblyName>smartsheet-csharp-sdk</AssemblyName>
2222
<RootNamespace>smartsheet-csharp-sdk</RootNamespace>
2323
<Configuration>Debug</Configuration>
@@ -79,4 +79,4 @@
7979
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0' ">
8080
<Reference Include="System.Management" />
8181
</ItemGroup>
82-
</Project>
82+
</Project>

0 commit comments

Comments
 (0)