Skip to content

Commit a45352b

Browse files
authored
Merge pull request #303 from wravery/bug-fixes
Couple of bug fixes
2 parents f1d2a1f + b049605 commit a45352b

File tree

11 files changed

+19
-21
lines changed

11 files changed

+19
-21
lines changed

cmake/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.5.6
1+
4.5.7

include/graphqlservice/internal/Grammar.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -453,9 +453,7 @@ struct field_selection_set : seq<star<ignored>, selection_set>
453453
{
454454
};
455455

456-
struct field_content
457-
: sor<seq<field_arguments, opt<field_directives>, field_selection_set>,
458-
seq<field_arguments, field_directives>, field_arguments>
456+
struct field_content : seq<field_arguments, opt<field_directives>, opt<field_selection_set>>
459457
{
460458
};
461459

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.6" };
13+
constexpr std::string_view FullVersion { "4.5.7" };
1414

1515
constexpr size_t MajorVersion = 4;
1616
constexpr size_t MinorVersion = 5;
17-
constexpr size_t PatchVersion = 6;
17+
constexpr size_t PatchVersion = 7;
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,6,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.6"
6+
#define GRAPHQL_RC_VERSION 4,5,7,0
7+
#define GRAPHQL_RC_VERSION_STR "4.5.7"
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,6,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.6"
6+
#define GRAPHQL_RC_VERSION 4,5,7,0
7+
#define GRAPHQL_RC_VERSION_STR "4.5.7"
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,6,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.6"
6+
#define GRAPHQL_RC_VERSION 4,5,7,0
7+
#define GRAPHQL_RC_VERSION_STR "4.5.7"
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,6,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.6"
6+
#define GRAPHQL_RC_VERSION 4,5,7,0
7+
#define GRAPHQL_RC_VERSION_STR "4.5.7"
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,6,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.6"
6+
#define GRAPHQL_RC_VERSION 4,5,7,0
7+
#define GRAPHQL_RC_VERSION_STR "4.5.7"
88

99
#ifndef DEBUG
1010
#define VER_DEBUG 0

res/graphqlresponse_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,6,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.6"
6+
#define GRAPHQL_RC_VERSION 4,5,7,0
7+
#define GRAPHQL_RC_VERSION_STR "4.5.7"
88

99
#ifndef DEBUG
1010
#define VER_DEBUG 0

res/graphqlservice_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,6,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.6"
6+
#define GRAPHQL_RC_VERSION 4,5,7,0
7+
#define GRAPHQL_RC_VERSION_STR "4.5.7"
88

99
#ifndef DEBUG
1010
#define VER_DEBUG 0

0 commit comments

Comments
 (0)