Skip to content

Commit

Permalink
Tick v0.6.0 pre-release (#298)
Browse files Browse the repository at this point in the history
* Tick v0.6.0 pre-release

* Add frozen_string_literal: true to version.rb
  • Loading branch information
mlarraz authored Feb 5, 2021
1 parent e584045 commit 90b2cbc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 4 additions & 2 deletions lib/makara/version.rb
Original file line number Diff line number Diff line change
@@ -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('.')
Expand Down

0 comments on commit 90b2cbc

Please sign in to comment.