Skip to content

Commit

Permalink
1.87.0 test
Browse files Browse the repository at this point in the history
  • Loading branch information
chcg committed Dec 12, 2024
1 parent d7aa2d4 commit 00da5d3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
matrix:
build_configuration: [Release]
build_platform: [Any CPU]
build_boost_version: [1_86_0]
build_boost_version_dot: [1.86.0]
build_boost_version: [1_87_0]
build_boost_version_dot: [1.87.0]
build_msvc_version_dot: [14.3, 14.2, 14.1]
steps:
- name: Checkout repo
Expand Down
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version: 1.86.{build}
version: 1.87.{build}


environment:
matrix:

- PlatformToolset: v143
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
BUILD_BOOST_VERSION: 1_86_0
BUILD_BOOST_VERSION_DOT: 1.86.0
BUILD_BOOST_VERSION: 1_87_0
BUILD_BOOST_VERSION_DOT: 1.87.0
BUILD_MSVC_VERSION_DOT: 14.3

configuration:
Expand Down
8 changes: 4 additions & 4 deletions builder/builder/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace builder
public static class Config
{
public static readonly Version Version =
new StableVersion(1, 86, 0);
new StableVersion(1, 87, 0);

public static readonly List[] Release =
{
Expand Down Expand Up @@ -40,9 +40,9 @@ public CompilerInfo(string name, string preRelease = "")
{ "vc110", new CompilerInfo("Visual Studio 2012 Update 4") },
{ "vc120", new CompilerInfo("Visual Studio 2013 Update 5") },
{ "vc140", new CompilerInfo("Visual Studio 2015 Update 3") },
{ "vc141", new CompilerInfo("Visual Studio 2017 15.9.63") },
{ "vc142", new CompilerInfo("Visual Studio 2019 16.11.37") },
{ "vc143", new CompilerInfo("Visual Studio 2022 17.10.5") },
{ "vc141", new CompilerInfo("Visual Studio 2017 15.9.67") },
{ "vc142", new CompilerInfo("Visual Studio 2019 16.11.41") },
{ "vc143", new CompilerInfo("Visual Studio 2022 17.11.5") },
};

public static int CompilerNumber(string key)
Expand Down

0 comments on commit 00da5d3

Please sign in to comment.