Skip to content

Commit 2382a49

Browse files
authored
Merge pull request #282 from wravery/mac-build-fix
Default arguments break for incomplete struct definitions in input types
2 parents 7f0e166 + 28bb99f commit 2382a49

File tree

16 files changed

+54
-42
lines changed

16 files changed

+54
-42
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
with:
1717
submodules: true
1818

.github/workflows/macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
runs-on: macos-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
with:
1717
submodules: true
1818

1919
- name: Cache vcpkg
20-
uses: actions/cache@v2
20+
uses: actions/cache@v3
2121
id: cache-vcpkg
2222
with:
2323
path: build/vcpkg_installed/

.github/workflows/windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ jobs:
1414
runs-on: windows-latest
1515

1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
with:
1919
submodules: true
2020

2121
- name: Set target triplet
2222
id: set-variables
2323
shell: pwsh
24-
run: echo "::set-output name=vcpkg_triplet::${{ matrix.arch }}-windows$(if ('${{ matrix.libs }}' -eq 'static') { '-static' })"
24+
run: echo "vcpkg_triplet=${{ matrix.arch }}-windows$(if ('${{ matrix.libs }}' -eq 'static') { '-static' })" >> $env:GITHUB_OUTPUT
2525

2626
- name: Cache vcpkg
27-
uses: actions/cache@v2
27+
uses: actions/cache@v3
2828
id: cache-vcpkg
2929
with:
3030
path: build/vcpkg_installed/

cmake/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.5.1
1+
4.5.2

include/graphqlservice/internal/Version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111
namespace graphql::internal {
1212

13-
constexpr std::string_view FullVersion { "4.5.1" };
13+
constexpr std::string_view FullVersion { "4.5.2" };
1414

1515
constexpr size_t MajorVersion = 4;
1616
constexpr size_t MinorVersion = 5;
17-
constexpr size_t PatchVersion = 1;
17+
constexpr size_t PatchVersion = 2;
1818

1919
} // namespace graphql::internal
2020

res/ClientGen.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
#include <winver.h>
55

6-
#define GRAPHQL_RC_VERSION 4,5,1,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.1"
6+
#define GRAPHQL_RC_VERSION 4,5,2,0
7+
#define GRAPHQL_RC_VERSION_STR "4.5.2"
88

99
#ifndef DEBUG
1010
#define VER_DEBUG 0

res/SchemaGen.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
#include <winver.h>
55

6-
#define GRAPHQL_RC_VERSION 4,5,1,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.1"
6+
#define GRAPHQL_RC_VERSION 4,5,2,0
7+
#define GRAPHQL_RC_VERSION_STR "4.5.2"
88

99
#ifndef DEBUG
1010
#define VER_DEBUG 0

res/graphqlclient_version.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
#include <winver.h>
55

6-
#define GRAPHQL_RC_VERSION 4,5,1,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.1"
6+
#define GRAPHQL_RC_VERSION 4,5,2,0
7+
#define GRAPHQL_RC_VERSION_STR "4.5.2"
88

99
#ifndef DEBUG
1010
#define VER_DEBUG 0

res/graphqljson_version.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
#include <winver.h>
55

6-
#define GRAPHQL_RC_VERSION 4,5,1,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.1"
6+
#define GRAPHQL_RC_VERSION 4,5,2,0
7+
#define GRAPHQL_RC_VERSION_STR "4.5.2"
88

99
#ifndef DEBUG
1010
#define VER_DEBUG 0

res/graphqlpeg_version.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
#include <winver.h>
55

6-
#define GRAPHQL_RC_VERSION 4,5,1,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.1"
6+
#define GRAPHQL_RC_VERSION 4,5,2,0
7+
#define GRAPHQL_RC_VERSION_STR "4.5.2"
88

99
#ifndef DEBUG
1010
#define VER_DEBUG 0

0 commit comments

Comments
 (0)