Skip to content

Commit 266447b

Browse files
authored
Merge pull request #242 from wravery/code-cleanup
Code cleanup
2 parents 89fc567 + 96b3365 commit 266447b

29 files changed

+187
-163
lines changed

cmake/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.2.0
1+
4.3.0

include/graphqlservice/internal/Version.h

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

1111
namespace graphql::internal {
1212

13-
constexpr std::string_view FullVersion { "4.2.0" };
13+
constexpr std::string_view FullVersion { "4.3.0" };
1414

1515
constexpr size_t MajorVersion = 4;
16-
constexpr size_t MinorVersion = 2;
16+
constexpr size_t MinorVersion = 3;
1717
constexpr size_t PatchVersion = 0;
1818

1919
} // namespace graphql::internal

include/graphqlservice/introspection/IntrospectionSchema.h

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

1111
#include "graphqlservice/internal/Schema.h"
1212

13-
// Check if the library version is compatible with schemagen 4.2.0
13+
// Check if the library version is compatible with schemagen 4.3.0
1414
static_assert(graphql::internal::MajorVersion == 4, "regenerate with schemagen: major version mismatch");
15-
static_assert(graphql::internal::MinorVersion == 2, "regenerate with schemagen: minor version mismatch");
15+
static_assert(graphql::internal::MinorVersion == 3, "regenerate with schemagen: minor version mismatch");
1616

1717
#include <array>
1818
#include <memory>

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,2,0,0
7-
#define GRAPHQL_RC_VERSION_STR "4.2.0"
6+
#define GRAPHQL_RC_VERSION 4,3,0,0
7+
#define GRAPHQL_RC_VERSION_STR "4.3.0"
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,2,0,0
7-
#define GRAPHQL_RC_VERSION_STR "4.2.0"
6+
#define GRAPHQL_RC_VERSION 4,3,0,0
7+
#define GRAPHQL_RC_VERSION_STR "4.3.0"
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,2,0,0
7-
#define GRAPHQL_RC_VERSION_STR "4.2.0"
6+
#define GRAPHQL_RC_VERSION 4,3,0,0
7+
#define GRAPHQL_RC_VERSION_STR "4.3.0"
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,2,0,0
7-
#define GRAPHQL_RC_VERSION_STR "4.2.0"
6+
#define GRAPHQL_RC_VERSION 4,3,0,0
7+
#define GRAPHQL_RC_VERSION_STR "4.3.0"
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,2,0,0
7-
#define GRAPHQL_RC_VERSION_STR "4.2.0"
6+
#define GRAPHQL_RC_VERSION 4,3,0,0
7+
#define GRAPHQL_RC_VERSION_STR "4.3.0"
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,2,0,0
7-
#define GRAPHQL_RC_VERSION_STR "4.2.0"
6+
#define GRAPHQL_RC_VERSION 4,3,0,0
7+
#define GRAPHQL_RC_VERSION_STR "4.3.0"
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,2,0,0
7-
#define GRAPHQL_RC_VERSION_STR "4.2.0"
6+
#define GRAPHQL_RC_VERSION 4,3,0,0
7+
#define GRAPHQL_RC_VERSION_STR "4.3.0"
88

99
#ifndef DEBUG
1010
#define VER_DEBUG 0

0 commit comments

Comments
 (0)