diff --git a/.github/workflows/build-nuget-package.yml b/.github/workflows/build-nuget-package.yml index c364661248..d2292eafe1 100644 --- a/.github/workflows/build-nuget-package.yml +++ b/.github/workflows/build-nuget-package.yml @@ -185,7 +185,7 @@ jobs: - name: Dotnet pack working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native - run: dotnet pack -c Release /p:Version=1.7.0 + run: dotnet pack -c Release /p:Version=1.7.1 - uses: actions/upload-artifact@v4 with: diff --git a/.github/workflows/test-nuget-macos.yml b/.github/workflows/test-nuget-macos.yml index 396a2e9505..a3db17fd04 100644 --- a/.github/workflows/test-nuget-macos.yml +++ b/.github/workflows/test-nuget-macos.yml @@ -35,7 +35,7 @@ jobs: - name: Dotnet pack working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native - run: dotnet pack -c Release /p:Version=1.7.0 + run: dotnet pack -c Release /p:Version=1.7.1 - name: Add local feed run: dotnet nuget add source ${{runner.workspace}}/nugets @@ -81,7 +81,7 @@ jobs: - name: Dotnet pack working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native - run: dotnet pack -c Release /p:Version=1.7.0 + run: dotnet pack -c Release /p:Version=1.7.1 - name: Add local feed run: dotnet nuget add source ${{runner.workspace}}/nugets diff --git a/.github/workflows/test-nuget-package.yml b/.github/workflows/test-nuget-package.yml index 45ea7072d6..14af252834 100644 --- a/.github/workflows/test-nuget-package.yml +++ b/.github/workflows/test-nuget-package.yml @@ -35,7 +35,7 @@ jobs: - name: Dotnet pack working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native - run: dotnet pack -c Release /p:Version=1.7.0 + run: dotnet pack -c Release /p:Version=1.7.1 - name: Add local feed run: dotnet nuget add source ${{runner.workspace}}/nugets @@ -81,7 +81,7 @@ jobs: - name: Dotnet pack working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native - run: dotnet pack -c Release /p:Version=1.7.0 + run: dotnet pack -c Release /p:Version=1.7.1 - name: Add local feed run: dotnet nuget add source ${{runner.workspace}}/nugets @@ -124,7 +124,7 @@ jobs: - name: Dotnet pack working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native - run: dotnet pack -c Release /p:Version=1.7.0 + run: dotnet pack -c Release /p:Version=1.7.1 - name: Add local feed run: dotnet nuget add source ${{runner.workspace}}/nugets @@ -167,7 +167,7 @@ jobs: - name: Dotnet pack working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native - run: dotnet pack -c Release /p:Version=1.7.0 + run: dotnet pack -c Release /p:Version=1.7.1 - name: Add local feed run: dotnet nuget add source ${{runner.workspace}}/nugets @@ -212,7 +212,7 @@ jobs: - name: Dotnet pack working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native - run: dotnet pack -c Release /p:Version=1.7.0 + run: dotnet pack -c Release /p:Version=1.7.1 - name: Add local feed run: dotnet nuget add source -n name ${{runner.workspace}}\nugets @@ -228,5 +228,5 @@ jobs: dotnet new console rm Program.cs cp ${{runner.workspace}}\HiGHS\examples\call_highs_from_csharp.cs . - dotnet add package Highs.Native -v 1.7.0 -s ${{runner.workspace}}\nugets + dotnet add package Highs.Native -v 1.7.1 -s ${{runner.workspace}}\nugets dotnet run \ No newline at end of file diff --git a/.github/workflows/test-nuget-ubuntu.yml b/.github/workflows/test-nuget-ubuntu.yml index cce98e7f21..66261fce7d 100644 --- a/.github/workflows/test-nuget-ubuntu.yml +++ b/.github/workflows/test-nuget-ubuntu.yml @@ -31,7 +31,7 @@ jobs: - name: Dotnet pack working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native - run: dotnet pack -c Release /p:Version=1.7.0 + run: dotnet pack -c Release /p:Version=1.7.1 - name: Add local feed run: dotnet nuget add source ${{runner.workspace}}/nugets @@ -74,7 +74,7 @@ jobs: - name: Dotnet pack working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native - run: dotnet pack -c Release /p:Version=1.7.0 + run: dotnet pack -c Release /p:Version=1.7.1 - name: Add local feed run: dotnet nuget add source ${{runner.workspace}}/nugets diff --git a/.github/workflows/test-nuget-win.yml b/.github/workflows/test-nuget-win.yml index 28eb217f43..67aaa4d8fa 100644 --- a/.github/workflows/test-nuget-win.yml +++ b/.github/workflows/test-nuget-win.yml @@ -33,7 +33,7 @@ jobs: - name: Dotnet pack working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native - run: dotnet pack -c Release /p:Version=1.7.0 + run: dotnet pack -c Release /p:Version=1.7.1 - name: Add local feed run: dotnet nuget add source -n name ${{runner.workspace}}\nugets @@ -49,5 +49,5 @@ jobs: dotnet new console rm Program.cs cp ${{runner.workspace}}\HiGHS\examples\call_highs_from_csharp.cs . - dotnet add package Highs.Native -v 1.7.0 -s ${{runner.workspace}}\nugets + dotnet add package Highs.Native -v 1.7.1 -s ${{runner.workspace}}\nugets dotnet run \ No newline at end of file diff --git a/MODULE.bazel b/MODULE.bazel index 6053f6d499..1dc4cb2e34 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "highs", - version = "1.7.0", + version = "1.7.1", ) bazel_dep( diff --git a/README.md b/README.md index 6a3d97bd62..559eae76a7 100644 --- a/README.md +++ b/README.md @@ -208,7 +208,7 @@ The nuget package Highs.Native is on https://www.nuget.org, at https://www.nuget It can be added to your C# project with `dotnet` ```shell -dotnet add package Highs.Native --version 1.7.0 +dotnet add package Highs.Native --version 1.7.1 ``` The nuget package contains runtime libraries for diff --git a/Version.txt b/Version.txt index 36417c94ff..82cb5f3d45 100644 --- a/Version.txt +++ b/Version.txt @@ -1,4 +1,4 @@ HIGHS_MAJOR=1 HIGHS_MINOR=7 -HIGHS_PATCH=0 +HIGHS_PATCH=1 #PRE_RELEASE=YES diff --git a/docs/src/interfaces/csharp.md b/docs/src/interfaces/csharp.md index 884c3a419e..431e256350 100644 --- a/docs/src/interfaces/csharp.md +++ b/docs/src/interfaces/csharp.md @@ -17,7 +17,7 @@ The nuget package Highs.Native is on https://www.nuget.org, at https://www.nuget It can be added to your C# project with `dotnet` ```shell -dotnet add package Highs.Native --version 1.7.0 +dotnet add package Highs.Native --version 1.7.1 ``` The nuget package contains runtime libraries for diff --git a/meson.build b/meson.build index 01193cc941..b9e89e85b4 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('highs', 'cpp', 'c', - version : '1.7.0', + version : '1.7.1', meson_version: '>= 1.1.0', default_options : ['warning_level=1', 'cpp_std=c++17', diff --git a/nuget/README.md b/nuget/README.md index 879c409c03..a9383b2c16 100644 --- a/nuget/README.md +++ b/nuget/README.md @@ -7,7 +7,7 @@ The nuget package Highs.Native is on https://www.nuget.org, at https://www.nuget It can be added to your C# project with `dotnet` ```shell -dotnet add package Highs.Native --version 1.7.0 +dotnet add package Highs.Native --version 1.7.1 ``` The nuget package contains runtime libraries for diff --git a/pyproject.toml b/pyproject.toml index 9d7bbc63c4..371c8e5e9d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "scikit_build_core.build" [project] name = "highspy" -version = "1.7.1.dev2" +version = "1.7.1" description = "A thin set of pybind11 wrappers to HiGHS" authors = [{ name = "HiGHS developers", email = "highsopt@gmail.com" }] readme = "README.md" diff --git a/tests/test_highspy.py b/tests/test_highspy.py index a7d9ae5aa9..6d3e790d92 100644 --- a/tests/test_highspy.py +++ b/tests/test_highspy.py @@ -105,10 +105,10 @@ def get_infeasible_model(self): def test_version(self): h = self.get_basic_model() - self.assertEqual(h.version(), "1.7.0") + self.assertEqual(h.version(), "1.7.1") self.assertEqual(h.versionMajor(), 1) self.assertEqual(h.versionMinor(), 7) - self.assertEqual(h.versionPatch(), 0) + self.assertEqual(h.versionPatch(), 1) def test_basics(self): h = self.get_basic_model()