From 90b2cbcf026b169e29eefb1d74c9c96ae8906391 Mon Sep 17 00:00:00 2001 From: Matt Larraz Date: Fri, 5 Feb 2021 09:27:21 -0800 Subject: [PATCH] Tick v0.6.0 pre-release (#298) * Tick v0.6.0 pre-release * Add frozen_string_literal: true to version.rb --- CHANGELOG.md | 4 ++++ lib/makara/version.rb | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d0f682d..9630388f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,13 @@ All notable changes to this project will be documented in this file. ## Unreleased + +## v0.6.0.pre - 2021-01-08 +[Full Changelog](https://github.com/instacart/makara/compare/v0.5.0...v0.6.0.pre) - Use ActiveRecord URL resolver instead of copying definition [#294](https://github.com/instacart/makara/pull/294) Matt Larraz - Deprecated the term `master` in favor of `primary` [#290](https://github.com/instacart/makara/pull/290) Matt Larraz - Deprecated the term `slave` in favor of `replica` [#286](https://github.com/instacart/makara/pull/286) Matt Larraz +- Fix Ruby 2.7 kwarg warning and add Ruby 3 support [#283](https://github.com/instacart/makara/pull/283) Matt Larraz - Drop support for Ruby < 2.5 and ActiveRecord < 5.2 [#281](https://github.com/instacart/makara/pull/281) Matt Larraz ## v0.5.0 - 2021-01-08 diff --git a/lib/makara/version.rb b/lib/makara/version.rb index cef719d9..fc2555a2 100644 --- a/lib/makara/version.rb +++ b/lib/makara/version.rb @@ -1,9 +1,11 @@ +# frozen_string_literal: true + module Makara module VERSION MAJOR = 0 - MINOR = 5 + MINOR = 6 PATCH = 0 - PRE = nil + PRE = "pre" def self.to_s [MAJOR, MINOR, PATCH, PRE].compact.join('.')