From 6bc3662a44f69e7cd46c1be304d1ead45e20c37d Mon Sep 17 00:00:00 2001 From: Brett Chalupa Date: Mon, 9 Dec 2024 20:56:33 -0500 Subject: [PATCH] Release v5.1.0 --- CHANGELOG.md | 7 +++++++ lib/graphql-docs/version.rb | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4c3ada..ad219b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ A concise overview of the public-facing changes to the gem from version to versi ## Unreleased +## v5.1.0 - 2024-12-09 + +- List queries in the sidebar, similar to mutations. See https://github.com/brettchalupa/graphql-docs/pull/156. Thanks @denisahearn! +- Fix Sass `@import` deprecation +- Add ostruct and logger gems to dependencies since they're being removed from the Ruby standard library in a future release +- Test and fixture improvements + ## v5.0.0 - 2024-07-03 - **breaking**: The graphql gem 2.2.0+ breaks some of the parsing and displaying of comments from a GraphQL schema file diff --git a/lib/graphql-docs/version.rb b/lib/graphql-docs/version.rb index 192262b..f731568 100644 --- a/lib/graphql-docs/version.rb +++ b/lib/graphql-docs/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module GraphQLDocs - VERSION = '5.0.0' + VERSION = '5.1.0' end