Skip to content

Commit

Permalink
Merge pull request #303 from wravery/bug-fixes
Browse files Browse the repository at this point in the history
Couple of bug fixes
  • Loading branch information
wravery committed Jul 18, 2024
2 parents f1d2a1f + b049605 commit a45352b
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 21 deletions.
2 changes: 1 addition & 1 deletion cmake/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.5.6
4.5.7
4 changes: 1 addition & 3 deletions include/graphqlservice/internal/Grammar.h
Original file line number Diff line number Diff line change
Expand Up @@ -453,9 +453,7 @@ struct field_selection_set : seq<star<ignored>, selection_set>
{
};

struct field_content
: sor<seq<field_arguments, opt<field_directives>, field_selection_set>,
seq<field_arguments, field_directives>, field_arguments>
struct field_content : seq<field_arguments, opt<field_directives>, opt<field_selection_set>>
{
};

Expand Down
4 changes: 2 additions & 2 deletions include/graphqlservice/internal/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

namespace graphql::internal {

constexpr std::string_view FullVersion { "4.5.6" };
constexpr std::string_view FullVersion { "4.5.7" };

constexpr size_t MajorVersion = 4;
constexpr size_t MinorVersion = 5;
constexpr size_t PatchVersion = 6;
constexpr size_t PatchVersion = 7;

} // namespace graphql::internal

Expand Down
4 changes: 2 additions & 2 deletions res/ClientGen.rc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include <winver.h>

#define GRAPHQL_RC_VERSION 4,5,6,0
#define GRAPHQL_RC_VERSION_STR "4.5.6"
#define GRAPHQL_RC_VERSION 4,5,7,0
#define GRAPHQL_RC_VERSION_STR "4.5.7"

#ifndef DEBUG
#define VER_DEBUG 0
Expand Down
4 changes: 2 additions & 2 deletions res/SchemaGen.rc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include <winver.h>

#define GRAPHQL_RC_VERSION 4,5,6,0
#define GRAPHQL_RC_VERSION_STR "4.5.6"
#define GRAPHQL_RC_VERSION 4,5,7,0
#define GRAPHQL_RC_VERSION_STR "4.5.7"

#ifndef DEBUG
#define VER_DEBUG 0
Expand Down
4 changes: 2 additions & 2 deletions res/graphqlclient_version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include <winver.h>

#define GRAPHQL_RC_VERSION 4,5,6,0
#define GRAPHQL_RC_VERSION_STR "4.5.6"
#define GRAPHQL_RC_VERSION 4,5,7,0
#define GRAPHQL_RC_VERSION_STR "4.5.7"

#ifndef DEBUG
#define VER_DEBUG 0
Expand Down
4 changes: 2 additions & 2 deletions res/graphqljson_version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include <winver.h>

#define GRAPHQL_RC_VERSION 4,5,6,0
#define GRAPHQL_RC_VERSION_STR "4.5.6"
#define GRAPHQL_RC_VERSION 4,5,7,0
#define GRAPHQL_RC_VERSION_STR "4.5.7"

#ifndef DEBUG
#define VER_DEBUG 0
Expand Down
4 changes: 2 additions & 2 deletions res/graphqlpeg_version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include <winver.h>

#define GRAPHQL_RC_VERSION 4,5,6,0
#define GRAPHQL_RC_VERSION_STR "4.5.6"
#define GRAPHQL_RC_VERSION 4,5,7,0
#define GRAPHQL_RC_VERSION_STR "4.5.7"

#ifndef DEBUG
#define VER_DEBUG 0
Expand Down
4 changes: 2 additions & 2 deletions res/graphqlresponse_version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include <winver.h>

#define GRAPHQL_RC_VERSION 4,5,6,0
#define GRAPHQL_RC_VERSION_STR "4.5.6"
#define GRAPHQL_RC_VERSION 4,5,7,0
#define GRAPHQL_RC_VERSION_STR "4.5.7"

#ifndef DEBUG
#define VER_DEBUG 0
Expand Down
4 changes: 2 additions & 2 deletions res/graphqlservice_version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include <winver.h>

#define GRAPHQL_RC_VERSION 4,5,6,0
#define GRAPHQL_RC_VERSION_STR "4.5.6"
#define GRAPHQL_RC_VERSION 4,5,7,0
#define GRAPHQL_RC_VERSION_STR "4.5.7"

#ifndef DEBUG
#define VER_DEBUG 0
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@
"dependencies": [
"pegtl"
],
"builtin-baseline": "a618637937298060bdbe5fbcfb628eabd1082c8a"
"builtin-baseline": "7aeffc91033ad35cc4e2c152f213a866ec6c11ac"
}

0 comments on commit a45352b

Please sign in to comment.