Skip to content

Commit 1426562

Browse files
committed
Update to v3.5.0 for library rename which requires build changes
1 parent 60170a8 commit 1426562

File tree

14 files changed

+28
-28
lines changed

14 files changed

+28
-28
lines changed

cmake/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.1
1+
3.5.0

include/graphqlservice/internal/Version.h

Lines changed: 3 additions & 3 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 { "3.4.1" };
13+
constexpr std::string_view FullVersion { "3.5.0" };
1414

1515
constexpr size_t MajorVersion = 3;
16-
constexpr size_t MinorVersion = 4;
17-
constexpr size_t PatchVersion = 1;
16+
constexpr size_t MinorVersion = 5;
17+
constexpr size_t PatchVersion = 0;
1818

1919
} // namespace graphql::internal
2020

include/graphqlservice/introspection/IntrospectionSchema.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
#include "graphqlservice/GraphQLSchema.h"
1212
#include "graphqlservice/GraphQLService.h"
1313

14-
// Check if the library version is compatible with schemagen 3.4.1
14+
// Check if the library version is compatible with schemagen 3.5.0
1515
static_assert(graphql::internal::MajorVersion == 3, "regenerate with schemagen: major version mismatch");
16-
static_assert(graphql::internal::MinorVersion == 4, "regenerate with schemagen: minor version mismatch");
16+
static_assert(graphql::internal::MinorVersion == 5, "regenerate with schemagen: minor version mismatch");
1717

1818
// clang-format off
1919
#ifdef GRAPHQL_DLLEXPORTS

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 SCHEMAGEN_RC_VERSION 3,4,1,0
7-
#define SCHEMAGEN_RC_VERSION_STR "3.4.1"
6+
#define SCHEMAGEN_RC_VERSION 3,5,0,0
7+
#define SCHEMAGEN_RC_VERSION_STR "3.5.0"
88

99
#ifndef DEBUG
1010
#define VER_DEBUG 0

res/graphqlintrospection_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 3,4,1,0
7-
#define GRAPHQL_RC_VERSION_STR "3.4.1"
6+
#define GRAPHQL_RC_VERSION 3,5,0,0
7+
#define GRAPHQL_RC_VERSION_STR "3.5.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 3,4,1,0
7-
#define GRAPHQL_RC_VERSION_STR "3.4.1"
6+
#define GRAPHQL_RC_VERSION 3,5,0,0
7+
#define GRAPHQL_RC_VERSION_STR "3.5.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 3,4,1,0
7-
#define GRAPHQL_RC_VERSION_STR "3.4.1"
6+
#define GRAPHQL_RC_VERSION 3,5,0,0
7+
#define GRAPHQL_RC_VERSION_STR "3.5.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 3,4,1,0
7-
#define GRAPHQL_RC_VERSION_STR "3.4.1"
6+
#define GRAPHQL_RC_VERSION 3,5,0,0
7+
#define GRAPHQL_RC_VERSION_STR "3.5.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 3,4,1,0
7-
#define GRAPHQL_RC_VERSION_STR "3.4.1"
6+
#define GRAPHQL_RC_VERSION 3,5,0,0
7+
#define GRAPHQL_RC_VERSION_STR "3.5.0"
88

99
#ifndef DEBUG
1010
#define VER_DEBUG 0

samples/separate/TodaySchema.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
#include "graphqlservice/GraphQLSchema.h"
1212
#include "graphqlservice/GraphQLService.h"
1313

14-
// Check if the library version is compatible with schemagen 3.4.1
14+
// Check if the library version is compatible with schemagen 3.5.0
1515
static_assert(graphql::internal::MajorVersion == 3, "regenerate with schemagen: major version mismatch");
16-
static_assert(graphql::internal::MinorVersion == 4, "regenerate with schemagen: minor version mismatch");
16+
static_assert(graphql::internal::MinorVersion == 5, "regenerate with schemagen: minor version mismatch");
1717

1818
#include <memory>
1919
#include <string>

0 commit comments

Comments
 (0)