Skip to content

Commit 290cc6d

Browse files
authored
update version (#246)
* update version * chore: back setup java
1 parent 40afb63 commit 290cc6d

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

.github/workflows/build_Stable_1x.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
name: build on windows
1212
runs-on: windows-latest
1313
steps:
14-
- uses: actions/checkout@v1
14+
- uses: actions/checkout@v3
1515
- name: Setup .NET Core
16-
uses: actions/setup-dotnet@v1
16+
uses: actions/setup-dotnet@v3
1717
with:
1818
dotnet-version: 6.0.x
1919
- name: Build with dotnet
@@ -31,9 +31,9 @@ jobs:
3131
runs-on: ubuntu-latest
3232

3333
steps:
34-
- uses: actions/checkout@v1
34+
- uses: actions/checkout@v3
3535
- name: Setup .NET Core
36-
uses: actions/setup-dotnet@v1
36+
uses: actions/setup-dotnet@v3
3737
with:
3838
dotnet-version: 6.0.x
3939
- name: Setup up JDK 1.8

.github/workflows/build_Stable_2x.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
name: build on windows
1212
runs-on: windows-latest
1313
steps:
14-
- uses: actions/checkout@v1
14+
- uses: actions/checkout@v3
1515
- name: Setup .NET Core
16-
uses: actions/setup-dotnet@v1
16+
uses: actions/setup-dotnet@v3
1717
with:
1818
dotnet-version: 6.0.x
1919
- name: Build with dotnet
@@ -31,9 +31,9 @@ jobs:
3131
runs-on: ubuntu-latest
3232

3333
steps:
34-
- uses: actions/checkout@v1
34+
- uses: actions/checkout@v3
3535
- name: Setup .NET Core
36-
uses: actions/setup-dotnet@v1
36+
uses: actions/setup-dotnet@v3
3737
with:
3838
dotnet-version: 6.0.x
3939
- name: Setup up JDK 1.8

.github/workflows/build_Unstable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v3
1717
- name: Setup .NET Core
18-
uses: actions/setup-dotnet@v1
18+
uses: actions/setup-dotnet@v3
1919
with:
2020
dotnet-version: 6.0.x
2121
- name: Setup up JDK 1.8

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v1
14+
- uses: actions/checkout@v3
1515
- name: Setup .NET Core
16-
uses: actions/setup-dotnet@v1
16+
uses: actions/setup-dotnet@v3
1717
with:
1818
dotnet-version: 6.0.x
1919
- name: Build with dotnet

.github/workflows/release_stable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v1
14+
- uses: actions/checkout@v3
1515
- name: Setup .NET Core
16-
uses: actions/setup-dotnet@v1
16+
uses: actions/setup-dotnet@v3
1717
with:
1818
dotnet-version: 6.0.x
1919
- name: Build with dotnet

build/version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<NugetVersion>1.3.4</NugetVersion>
3+
<NugetVersion>1.3.5</NugetVersion>
44
</PropertyGroup>
55
</Project>

src/Nacos/V2/Common/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
public class Constants
44
{
5-
public static string CLIENT_VERSION = "Nacos-CSharp-Client:v1.3.4";
5+
public static string CLIENT_VERSION = "Nacos-CSharp-Client:v1.3.5";
66

77
public const string ClientName = "NacosClient";
88

0 commit comments

Comments
 (0)