Skip to content

Commit 6a38c05

Browse files
authored
Merge pull request #2841 from ERGO-Code/bump-1.13.1
version-bump
2 parents eeb2d00 + 318f2c0 commit 6a38c05

File tree

14 files changed

+25
-25
lines changed

14 files changed

+25
-25
lines changed

.github/workflows/build-nuget-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ jobs:
184184

185185
- name: Dotnet pack
186186
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
187-
run: dotnet pack -c Release /p:Version=1.13.0
187+
run: dotnet pack -c Release /p:Version=1.13.1
188188

189189
- uses: actions/upload-artifact@v4
190190
with:

.github/workflows/test-nuget-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Dotnet pack
3636
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
37-
run: dotnet pack -c Release /p:Version=1.13.0
37+
run: dotnet pack -c Release /p:Version=1.13.1
3838

3939
- name: Add local feed
4040
run: dotnet nuget add source ${{runner.workspace}}/nugets
@@ -78,7 +78,7 @@ jobs:
7878

7979
- name: Dotnet pack
8080
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
81-
run: dotnet pack -c Release /p:Version=1.13.0
81+
run: dotnet pack -c Release /p:Version=1.13.1
8282

8383
- name: Add local feed
8484
run: dotnet nuget add source ${{runner.workspace}}/nugets

.github/workflows/test-nuget-package.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Dotnet pack
3636
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
37-
run: dotnet pack -c Release /p:Version=1.13.0
37+
run: dotnet pack -c Release /p:Version=1.13.1
3838

3939
- name: Add local feed
4040
run: dotnet nuget add source ${{runner.workspace}}/nugets
@@ -77,7 +77,7 @@ jobs:
7777

7878
- name: Dotnet pack
7979
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
80-
run: dotnet pack -c Release /p:Version=1.13.0
80+
run: dotnet pack -c Release /p:Version=1.13.1
8181

8282
- name: Add local feed
8383
run: dotnet nuget add source ${{runner.workspace}}/nugets
@@ -121,7 +121,7 @@ jobs:
121121

122122
- name: Dotnet pack
123123
working-directory: /__w/HiGHS/HiGHS/build/dotnet/Highs.Native
124-
run: dotnet pack -c Release /p:Version=1.13.0
124+
run: dotnet pack -c Release /p:Version=1.13.1
125125

126126
- name: Add local feed
127127
run: dotnet nuget add source /__w/HiGHS/HiGHS/nugets
@@ -165,7 +165,7 @@ jobs:
165165

166166
- name: Dotnet pack
167167
working-directory: /__w/HiGHS/HiGHS/build/dotnet/Highs.Native
168-
run: dotnet pack -c Release /p:Version=1.13.0
168+
run: dotnet pack -c Release /p:Version=1.13.1
169169

170170
- name: Add local feed
171171
run: dotnet nuget add source /__w/HiGHS/HiGHS/nugets
@@ -210,7 +210,7 @@ jobs:
210210

211211
- name: Dotnet pack
212212
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
213-
run: dotnet pack -c Release /p:Version=1.13.0
213+
run: dotnet pack -c Release /p:Version=1.13.1
214214

215215
- name: Add local feed
216216
run: dotnet nuget add source -n name ${{runner.workspace}}\nugets
@@ -226,5 +226,5 @@ jobs:
226226
dotnet new console
227227
rm Program.cs
228228
cp ${{runner.workspace}}\HiGHS\examples\call_highs_from_csharp.cs .
229-
dotnet add package Highs.Native -v 1.13.0 -s ${{runner.workspace}}\nugets
229+
dotnet add package Highs.Native -v 1.13.1 -s ${{runner.workspace}}\nugets
230230
dotnet run

.github/workflows/test-nuget-ubuntu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Dotnet pack
3434
working-directory: /__w/HiGHS/HiGHS/build/dotnet/Highs.Native
35-
run: dotnet pack -c Release /p:Version=1.13.0
35+
run: dotnet pack -c Release /p:Version=1.13.1
3636

3737
- name: Add local feed
3838
run: dotnet nuget add source /__w/HiGHS/HiGHS/nugets
@@ -76,7 +76,7 @@ jobs:
7676

7777
- name: Dotnet pack
7878
working-directory: /__w/HiGHS/HiGHS/build/dotnet/Highs.Native
79-
run: dotnet pack -c Release /p:Version=1.13.0
79+
run: dotnet pack -c Release /p:Version=1.13.1
8080

8181
- name: Add local feed
8282
run: dotnet nuget add source /__w/HiGHS/HiGHS/nugets

.github/workflows/test-nuget-win.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: Dotnet pack
3535
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
36-
run: dotnet pack -c Release /p:Version=1.13.0
36+
run: dotnet pack -c Release /p:Version=1.13.1
3737

3838
- name: Add local feed
3939
run: dotnet nuget add source -n name ${{runner.workspace}}\nugets
@@ -49,5 +49,5 @@ jobs:
4949
dotnet new console
5050
rm Program.cs
5151
cp ${{runner.workspace}}\HiGHS\examples\call_highs_from_csharp.cs .
52-
dotnet add package Highs.Native -v 1.13.0 -s ${{runner.workspace}}\nugets
52+
dotnet add package Highs.Native -v 1.13.1 -s ${{runner.workspace}}\nugets
5353
dotnet run

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ authors:
77
- given-names: Ivet
88
family-names: Galabova
99
title: "HiGHS"
10-
version: 1.13.0
10+
version: 1.13.1
1111
date-released: 2022-04-18
12-
url: "https://github.com/ERGO-Code/HiGHS/releases/tag/v1.13.0"
12+
url: "https://github.com/ERGO-Code/HiGHS/releases/tag/v1.13.1"
1313
preferred-citation:
1414
type: article
1515
authors:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ _The nix build files are provided by the community and are not officially suppor
136136

137137
### Precompiled binaries
138138

139-
From v1.13.0 onwards, precompiled static binaries are available at https://github.com/ERGO-Code/HiGHS/releases.
139+
Precompiled static binaries are available at https://github.com/ERGO-Code/HiGHS/releases.
140140

141141
Additionally, there is one package containing shared libraries for Windows x64.
142142

@@ -248,7 +248,7 @@ The nuget package Highs.Native is on https://www.nuget.org, at https://www.nuget
248248
It can be added to your C# project with `dotnet`
249249

250250
```shell
251-
dotnet add package Highs.Native --version 1.13.0
251+
dotnet add package Highs.Native --version 1.13.1
252252
```
253253

254254
The nuget package contains runtime libraries for

Version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
HIGHS_MAJOR=1
22
HIGHS_MINOR=13
3-
HIGHS_PATCH=0
3+
HIGHS_PATCH=1
44
#PRE_RELEASE=YES

docs/src/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ HiGHS can be installed using a package manager in the cases of
7979

8080
## Precompiled Binaries
8181

82-
From v1.13.0 onwards, precompiled static binaries are available at https://github.com/ERGO-Code/HiGHS/releases.
82+
Precompiled static binaries are available at https://github.com/ERGO-Code/HiGHS/releases.
8383

8484
Additionally, there is one package containing shared libraries for Windows x64.
8585

docs/src/interfaces/csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The nuget package Highs.Native is on https://www.nuget.org, at https://www.nuget
1717
It can be added to your C# project with `dotnet`
1818

1919
```shell
20-
dotnet add package Highs.Native --version 1.13.0
20+
dotnet add package Highs.Native --version 1.13.1
2121
```
2222

2323
The nuget package contains runtime libraries for

0 commit comments

Comments
 (0)