Skip to content

Commit 8efc896

Browse files
committed
1.8.0.pre1
1 parent e576c16 commit 8efc896

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@
88

99
### Bug fixes
1010

11+
## 1.8.0.pre1 (14 Nov 2017)
12+
13+
### Breaking changes
14+
15+
- Stop official support for Ruby 2.1 #1070
16+
17+
### New features
18+
19+
- Add class-based schema definition API #1037
20+
1121
## 1.7.6 (13 Nov 2017)
1222

1323
### Bug fixes

guides/schema/class_based_api.md

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

1111
In GraphQL `1.8`+, you can use Ruby classes to build your schema. You can __mix__ class-style and `.define`-style type definitions in a schema.
1212

13+
(`1.8` is currently in prerelease, check [RubyGems](https://rubygems.org/gems/graphql) for the latest version.)
14+
1315
You can get an overview of this new feature:
1416

1517
- [Rationale & Goals](#rationale--goals)

lib/graphql/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module GraphQL
3-
VERSION = "1.7.6"
3+
VERSION = "1.8.0.pre1"
44
end

0 commit comments

Comments
 (0)