Skip to content

Commit

Permalink
chore: prepare version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
theodorton committed Sep 23, 2024
1 parent 07999c5 commit 807c94e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v.0.7.0

* chore: bumped dependency support up to Rails 7.2 (by yenshirak)
* dropped support for Ruby 2.x

## v.0.6.7

* chore: bumped dependency support up to Rails 7.1 (by justisb)
Expand Down
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ routes in your result set for the called method are ok.
Add this line to your application's Gemfile:

```ruby
gem 'google_distance_matrix'
gem 'google_distance_matrix''~> 0.7.0'
```
And then execute:

Expand All @@ -114,6 +114,15 @@ Or install it yourself as:
$ gem install google_distance_matrix


### Ruby 2.x support

Legacy systems that needs to run on unsupported rubies can depend on `v0.6.7`, which is the last supported version for Ruby 2.

```ruby
gem 'google_distance_matrix', '0.6.7'
```


## Configuration

Configuration is done directly on a matrix or via `GoogleDistanceMatrix.configure_defaults`.
Expand Down
2 changes: 1 addition & 1 deletion lib/google_distance_matrix/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module GoogleDistanceMatrix
VERSION = '0.6.7'
VERSION = '0.7.0'
end

0 comments on commit 807c94e

Please sign in to comment.