From c52c29a7e420eb95528c9c8950c69c8dce0b059c Mon Sep 17 00:00:00 2001 From: Set27 Date: Tue, 27 Aug 2024 16:21:19 +0300 Subject: [PATCH] Bump version to 1.6.0 --- CHANGELOG.md | 7 ++++++- README.md | 4 ++-- lib/datarockets_style/version.rb | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b608126..023b92c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,17 @@ The format is described in [Contributing notes](CONTRIBUTING.md#changelog-entry- ## master -## 1.6.0 (2024-08-26) +## 1.6.0 (2024-08-27) ### Changed * **(Breaking)** Support Ruby >= 3.0.0 +* Update rubocop to `1.65.1`. ([@Set27]) +* Update rubocop-graphql to `1.5.4`. ([@Set27]) +* Update rubocop-rails to `2.26`. ([@Set27]) +* Update rubocop-spec to `3.0.4`. ([@Set27]) + ## 1.5.0 (2023-09-11) ### Added diff --git a/README.md b/README.md index 19dbe18..bcc0005 100644 --- a/README.md +++ b/README.md @@ -10,14 +10,14 @@ Add this line to your application's Gemfile: ```ruby group :test, :development do - gem 'datarockets-style', '~> 1.5.0' + gem 'datarockets-style', '~> 1.6.0' end ``` Or, for a Ruby library, add this to your gemspec: ```ruby -spec.add_development_dependency 'datarockets-style', '~> 1.5.0' +spec.add_development_dependency 'datarockets-style', '~> 1.6.0' ``` And then execute: diff --git a/lib/datarockets_style/version.rb b/lib/datarockets_style/version.rb index ace732f..e395edd 100644 --- a/lib/datarockets_style/version.rb +++ b/lib/datarockets_style/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module DatarocketsStyle - VERSION = "1.5.0" + VERSION = "1.6.0" end