Skip to content

Commit

Permalink
Merge pull request #18 from dolittle/3.2.0-upgradetools
Browse files Browse the repository at this point in the history
Upgrade C# and TS generation tools
  • Loading branch information
woksin authored Oct 19, 2021
2 parents 63ce7fa + f2090b7 commit 385bb96
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CI/CD Workflow

env:
PRERELEASE_BRANCHES: alpha,beta # Comma separated list of prerelease branch names. 'alpha,rc, ...'
PRERELEASE_BRANCHES: upgradetools # Comma separated list of prerelease branch names. 'alpha,rc, ...'
NUGET_OUTPUT: Artifacts/NuGet

on:
Expand Down Expand Up @@ -74,6 +74,7 @@ jobs:
version: ${{ needs.context.outputs.version }}
release-type: ${{ needs.context.outputs.release-type }}
- name: Prepend to Changelog
if: ${{ needs.context.outputs.should-publish == 'true' && needs.context.outputs.release-type != 'prerelease' }}
uses: dolittle/add-to-changelog-action@v2
with:
version: ${{ steps.increment-version.outputs.next-version }}
Expand Down
4 changes: 2 additions & 2 deletions Source/JavaScript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"dependencies": {
"commander": "7.2.0",
"execa": "5.0.0",
"grpc-tools": "1.11.1",
"grpc_tools_node_protoc_ts": "5.1.3"
"grpc-tools": "1.11.2",
"grpc_tools_node_protoc_ts": "5.3.2"
},
"devDependencies": {
"@tsconfig/node12": "1.0.7",
Expand Down
4 changes: 2 additions & 2 deletions Source/MSBuild/Dolittle.Protobuf.MSBuild.targets
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<Protobuf_NoWarnMissingExpected>true</Protobuf_NoWarnMissingExpected>
</PropertyGroup>

<Import Project="$(NuGetPackageRoot)grpc.tools/2.35.0/build/Grpc.Tools.props"/>
<Import Project="$(NuGetPackageRoot)grpc.tools/2.35.0/build/Grpc.Tools.targets"/>
<Import Project="$(NuGetPackageRoot)grpc.tools/2.41.0/build/Grpc.Tools.props"/>
<Import Project="$(NuGetPackageRoot)grpc.tools/2.41.0/build/Grpc.Tools.targets"/>

<ItemGroup>
<Protobuf Include="$(DolittleProtoProject)/**/*.proto"
Expand Down
8 changes: 4 additions & 4 deletions Source/MSBuild/Protobuf.MSBuild.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.14.0" />
<PackageReference Include="Google.Protobuf.Tools" Version="3.14.0" />
<PackageReference Include="Grpc" Version="2.35.0" />
<PackageReference Include="Grpc.Tools" Version="2.35.0" />
<PackageReference Include="Google.Protobuf" Version="3.18.1" />
<PackageReference Include="Google.Protobuf.Tools" Version="3.18.1" />
<PackageReference Include="Grpc" Version="2.41.0" />
<PackageReference Include="Grpc.Tools" Version="2.41.0" />
</ItemGroup>

</Project>

0 comments on commit 385bb96

Please sign in to comment.