From 20edd54ebb822906025e1282d8ca665850336963 Mon Sep 17 00:00:00 2001 From: galabovaa Date: Mon, 1 Jul 2024 15:29:21 +0200 Subject: [PATCH 01/13] Update Version.txt --- Version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Version.txt b/Version.txt index 82cb5f3d45..ee0905004d 100644 --- a/Version.txt +++ b/Version.txt @@ -1,4 +1,4 @@ HIGHS_MAJOR=1 HIGHS_MINOR=7 -HIGHS_PATCH=1 +HIGHS_PATCH=2 #PRE_RELEASE=YES From d6c63eeb11dfe678806b87cc0dc7006d6480bd86 Mon Sep 17 00:00:00 2001 From: galabovaa Date: Mon, 1 Jul 2024 15:30:51 +0200 Subject: [PATCH 02/13] Update nuget README.md --- nuget/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nuget/README.md b/nuget/README.md index a9383b2c16..5a6198d228 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.1 +dotnet add package Highs.Native --version 1.7.2 ``` The nuget package contains runtime libraries for @@ -33,4 +33,4 @@ Then, from `build/dotnet/Highs.Native`, run dotnet pack -c Release /p:Version=$version ``` -At the moment version is set manually. \ No newline at end of file +At the moment version is set manually. From a7d25966dce8797912616acd30106c1c9eaa4d19 Mon Sep 17 00:00:00 2001 From: galabovaa Date: Mon, 1 Jul 2024 15:31:34 +0200 Subject: [PATCH 03/13] Update MODULE.bazel --- MODULE.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MODULE.bazel b/MODULE.bazel index 1dc4cb2e34..9eff6f4a45 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "highs", - version = "1.7.1", + version = "1.7.2", ) bazel_dep( From 4e52baec37c5c416a535a94aec2c26f87fc96c9f Mon Sep 17 00:00:00 2001 From: galabovaa Date: Mon, 1 Jul 2024 15:34:57 +0200 Subject: [PATCH 04/13] Update meson.build --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index b9e89e85b4..a689b4ad5e 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('highs', 'cpp', 'c', - version : '1.7.1', + version : '1.7.2', meson_version: '>= 1.1.0', default_options : ['warning_level=1', 'cpp_std=c++17', From b1e0b382bc79837bcf7ee8ddb04fe3a8ebccc73f Mon Sep 17 00:00:00 2001 From: galabovaa Date: Mon, 1 Jul 2024 15:37:01 +0200 Subject: [PATCH 05/13] Update csharp.md --- docs/src/interfaces/csharp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/interfaces/csharp.md b/docs/src/interfaces/csharp.md index 431e256350..dceed6b00d 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.1 +dotnet add package Highs.Native --version 1.7.2 ``` The nuget package contains runtime libraries for From b04e467641c3147eaf8e1c539856f861b3952871 Mon Sep 17 00:00:00 2001 From: galabovaa Date: Mon, 1 Jul 2024 15:37:37 +0200 Subject: [PATCH 06/13] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 371c8e5e9d..e3173dfedf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "scikit_build_core.build" [project] name = "highspy" -version = "1.7.1" +version = "1.7.2" description = "A thin set of pybind11 wrappers to HiGHS" authors = [{ name = "HiGHS developers", email = "highsopt@gmail.com" }] readme = "README.md" From 8e18275e4bd37269d860cf957642ef02f376c02c Mon Sep 17 00:00:00 2001 From: galabovaa Date: Mon, 1 Jul 2024 15:39:15 +0200 Subject: [PATCH 07/13] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e238a6eb3..8ea121d8bd 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.1 +dotnet add package Highs.Native --version 1.7.2 ``` The nuget package contains runtime libraries for From 77ef2858869013f4286f72184ef775190b04e3d4 Mon Sep 17 00:00:00 2001 From: galabovaa Date: Mon, 1 Jul 2024 15:40:10 +0200 Subject: [PATCH 08/13] Update test_highspy.py --- tests/test_highspy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_highspy.py b/tests/test_highspy.py index 6d3e790d92..7991f91fd6 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.1") + self.assertEqual(h.version(), "1.7.2") self.assertEqual(h.versionMajor(), 1) self.assertEqual(h.versionMinor(), 7) - self.assertEqual(h.versionPatch(), 1) + self.assertEqual(h.versionPatch(), 2) def test_basics(self): h = self.get_basic_model() From a01046bdfc29a3e9084a1ec77ae534dc956a4f3c Mon Sep 17 00:00:00 2001 From: galabovaa Date: Mon, 1 Jul 2024 15:42:21 +0200 Subject: [PATCH 09/13] Update build-nuget-package.yml --- .github/workflows/build-nuget-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-nuget-package.yml b/.github/workflows/build-nuget-package.yml index d2292eafe1..f2c3cf84bd 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.1 + run: dotnet pack -c Release /p:Version=1.7.2 - uses: actions/upload-artifact@v4 with: From 3e42b9b5e5ef73fdc2436d04c21c38cb6cf788ab Mon Sep 17 00:00:00 2001 From: galabovaa Date: Mon, 1 Jul 2024 15:43:30 +0200 Subject: [PATCH 10/13] Update test-nuget-win.yml --- .github/workflows/test-nuget-win.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-nuget-win.yml b/.github/workflows/test-nuget-win.yml index 67aaa4d8fa..965fce54d3 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.1 + run: dotnet pack -c Release /p:Version=1.7.2 - 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.1 -s ${{runner.workspace}}\nugets - dotnet run \ No newline at end of file + dotnet add package Highs.Native -v 1.7.2 -s ${{runner.workspace}}\nugets + dotnet run From 94da8ba0b773b251c7623a515000fffa23848a80 Mon Sep 17 00:00:00 2001 From: galabovaa Date: Mon, 1 Jul 2024 15:47:25 +0200 Subject: [PATCH 11/13] Update test-nuget-package.yml --- .github/workflows/test-nuget-package.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test-nuget-package.yml b/.github/workflows/test-nuget-package.yml index 14af252834..00fa60ca12 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.1 + run: dotnet pack -c Release /p:Version=1.7.2 - 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.1 + run: dotnet pack -c Release /p:Version=1.7.2 - 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.1 + run: dotnet pack -c Release /p:Version=1.7.2 - 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.1 + run: dotnet pack -c Release /p:Version=1.7.2 - 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.1 + run: dotnet pack -c Release /p:Version=1.7.2 - 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.1 -s ${{runner.workspace}}\nugets - dotnet run \ No newline at end of file + dotnet add package Highs.Native -v 1.7.2 -s ${{runner.workspace}}\nugets + dotnet run From 21dc5d0445e3ab5f251aff726928cdd32730b7e0 Mon Sep 17 00:00:00 2001 From: galabovaa Date: Mon, 1 Jul 2024 15:48:08 +0200 Subject: [PATCH 12/13] Update test-nuget-macos.yml --- .github/workflows/test-nuget-macos.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-nuget-macos.yml b/.github/workflows/test-nuget-macos.yml index a3db17fd04..32724a3691 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.1 + run: dotnet pack -c Release /p:Version=1.7.2 - 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.1 + run: dotnet pack -c Release /p:Version=1.7.2 - name: Add local feed run: dotnet nuget add source ${{runner.workspace}}/nugets From 8a08f7bd1dbef2283e959dcc0b7b0413627c2d21 Mon Sep 17 00:00:00 2001 From: galabovaa Date: Mon, 1 Jul 2024 15:48:59 +0200 Subject: [PATCH 13/13] Update test-nuget-ubuntu.yml --- .github/workflows/test-nuget-ubuntu.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-nuget-ubuntu.yml b/.github/workflows/test-nuget-ubuntu.yml index 66261fce7d..7ad24fe9e2 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.1 + run: dotnet pack -c Release /p:Version=1.7.2 - 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.1 + run: dotnet pack -c Release /p:Version=1.7.2 - name: Add local feed run: dotnet nuget add source ${{runner.workspace}}/nugets @@ -93,4 +93,4 @@ jobs: dotnet add package Highs.Native -s ${{runner.workspace}}/nugets dotnet run - \ No newline at end of file +