Skip to content

Commit 6ab4af0

Browse files
committed
chore(release): update version to 5.0.0
1 parent b6b829d commit 6ab4af0

File tree

21 files changed

+55
-55
lines changed

21 files changed

+55
-55
lines changed

cmake/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.5.8
1+
5.0.0

include/graphqlservice/internal/Version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ namespace graphql::internal {
1313

1414
inline namespace version {
1515

16-
constexpr std::string_view FullVersion { "4.5.8" };
16+
constexpr std::string_view FullVersion { "5.0.0" };
1717

18-
constexpr std::size_t MajorVersion = 4;
19-
constexpr std::size_t MinorVersion = 5;
20-
constexpr std::size_t PatchVersion = 8;
18+
constexpr std::size_t MajorVersion = 5;
19+
constexpr std::size_t MinorVersion = 0;
20+
constexpr std::size_t PatchVersion = 0;
2121

2222
} // namespace version
2323

include/graphqlservice/introspection/IntrospectionSchema.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
#include <string>
2020
#include <string_view>
2121

22-
// Check if the library version is compatible with schemagen 4.5.0
23-
static_assert(graphql::internal::MajorVersion == 4, "regenerate with schemagen: major version mismatch");
24-
static_assert(graphql::internal::MinorVersion == 5, "regenerate with schemagen: minor version mismatch");
22+
// Check if the library version is compatible with schemagen 5.0.0
23+
static_assert(graphql::internal::MajorVersion == 5, "regenerate with schemagen: major version mismatch");
24+
static_assert(graphql::internal::MinorVersion == 0, "regenerate with schemagen: minor version mismatch");
2525

2626
namespace graphql {
2727
namespace introspection {

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,8,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.8"
6+
#define GRAPHQL_RC_VERSION 5,0,0,0
7+
#define GRAPHQL_RC_VERSION_STR "5.0.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,5,8,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.8"
6+
#define GRAPHQL_RC_VERSION 5,0,0,0
7+
#define GRAPHQL_RC_VERSION_STR "5.0.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,5,8,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.8"
6+
#define GRAPHQL_RC_VERSION 5,0,0,0
7+
#define GRAPHQL_RC_VERSION_STR "5.0.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,5,8,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.8"
6+
#define GRAPHQL_RC_VERSION 5,0,0,0
7+
#define GRAPHQL_RC_VERSION_STR "5.0.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,5,8,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.8"
6+
#define GRAPHQL_RC_VERSION 5,0,0,0
7+
#define GRAPHQL_RC_VERSION_STR "5.0.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,5,8,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.8"
6+
#define GRAPHQL_RC_VERSION 5,0,0,0
7+
#define GRAPHQL_RC_VERSION_STR "5.0.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,5,8,0
7-
#define GRAPHQL_RC_VERSION_STR "4.5.8"
6+
#define GRAPHQL_RC_VERSION 5,0,0,0
7+
#define GRAPHQL_RC_VERSION_STR "5.0.0"
88

99
#ifndef DEBUG
1010
#define VER_DEBUG 0

0 commit comments

Comments
 (0)