Skip to content

Commit c2bba11

Browse files
committed
HiGHS Release 1.8.1
1 parent 77899c0 commit c2bba11

File tree

14 files changed

+27
-22
lines changed

14 files changed

+27
-22
lines changed

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

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

186186
- name: Dotnet pack
187187
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
188-
run: dotnet pack -c Release /p:Version=1.8.0
188+
run: dotnet pack -c Release /p:Version=1.8.1
189189

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

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

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

3636
- name: Dotnet pack
3737
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
38-
run: dotnet pack -c Release /p:Version=1.8.0
38+
run: dotnet pack -c Release /p:Version=1.8.1
3939

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

8181
- name: Dotnet pack
8282
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
83-
run: dotnet pack -c Release /p:Version=1.8.0
83+
run: dotnet pack -c Release /p:Version=1.8.1
8484

8585
- name: Add local feed
8686
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
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Dotnet pack
3737
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
38-
run: dotnet pack -c Release /p:Version=1.8.0
38+
run: dotnet pack -c Release /p:Version=1.8.1
3939

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

8282
- name: Dotnet pack
8383
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
84-
run: dotnet pack -c Release /p:Version=1.8.0
84+
run: dotnet pack -c Release /p:Version=1.8.1
8585

8686
- name: Add local feed
8787
run: dotnet nuget add source ${{runner.workspace}}/nugets
@@ -124,7 +124,7 @@ jobs:
124124

125125
- name: Dotnet pack
126126
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
127-
run: dotnet pack -c Release /p:Version=1.8.0
127+
run: dotnet pack -c Release /p:Version=1.8.1
128128

129129
- name: Add local feed
130130
run: dotnet nuget add source ${{runner.workspace}}/nugets
@@ -167,7 +167,7 @@ jobs:
167167

168168
- name: Dotnet pack
169169
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
170-
run: dotnet pack -c Release /p:Version=1.8.0
170+
run: dotnet pack -c Release /p:Version=1.8.1
171171

172172
- name: Add local feed
173173
run: dotnet nuget add source ${{runner.workspace}}/nugets
@@ -212,7 +212,7 @@ jobs:
212212

213213
- name: Dotnet pack
214214
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
215-
run: dotnet pack -c Release /p:Version=1.8.0
215+
run: dotnet pack -c Release /p:Version=1.8.1
216216

217217
- name: Add local feed
218218
run: dotnet nuget add source -n name ${{runner.workspace}}\nugets
@@ -228,5 +228,5 @@ jobs:
228228
dotnet new console
229229
rm Program.cs
230230
cp ${{runner.workspace}}\HiGHS\examples\call_highs_from_csharp.cs .
231-
dotnet add package Highs.Native -v 1.8.0 -s ${{runner.workspace}}\nugets
231+
dotnet add package Highs.Native -v 1.8.1 -s ${{runner.workspace}}\nugets
232232
dotnet run

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

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

3232
- name: Dotnet pack
3333
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
34-
run: dotnet pack -c Release /p:Version=1.8.0
34+
run: dotnet pack -c Release /p:Version=1.8.1
3535

3636
- name: Add local feed
3737
run: dotnet nuget add source ${{runner.workspace}}/nugets
@@ -74,7 +74,7 @@ jobs:
7474

7575
- name: Dotnet pack
7676
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
77-
run: dotnet pack -c Release /p:Version=1.8.0
77+
run: dotnet pack -c Release /p:Version=1.8.1
7878

7979
- name: Add local feed
8080
run: dotnet nuget add source ${{runner.workspace}}/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.8.0
36+
run: dotnet pack -c Release /p:Version=1.8.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.8.0 -s ${{runner.workspace}}\nugets
52+
dotnet add package Highs.Native -v 1.8.1 -s ${{runner.workspace}}\nugets
5353
dotnet run

FEATURES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ Now computing the primal-dual integral, reporting it, and making it available as
2020

2121
Trivial primal heuristics "all zero", "all lower bound", "all upper bound", and "lock point" added to the MIP solver
2222

23+
# Build changes
24+
25+
Added wheels for Python 3.13
26+
27+
Updated command line options and moved them out of the library and into the executable
2328

2429

2530

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "highs",
3-
version = "1.8.0",
3+
version = "1.8.1",
44
)
55

66
bazel_dep(

README.md

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

210210
```shell
211-
dotnet add package Highs.Native --version 1.8.0
211+
dotnet add package Highs.Native --version 1.8.1
212212
```
213213

214214
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=8
3-
HIGHS_PATCH=0
3+
HIGHS_PATCH=1
44
#PRE_RELEASE=YES

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.8.0
20+
dotnet add package Highs.Native --version 1.8.1
2121
```
2222

2323
The nuget package contains runtime libraries for

0 commit comments

Comments
 (0)