Skip to content

Commit

Permalink
Preparing new release
Browse files Browse the repository at this point in the history
  • Loading branch information
zverok committed Feb 3, 2018
1 parent 1247e0a commit 08b6595
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ AllCops:
- 'spec/**/*'
- 'vendor/**/*'
- 'tmp/*'
- '*.gemspec'
DisplayCopNames: true

Metrics/LineLength:
Expand Down Expand Up @@ -39,7 +40,7 @@ Style/PercentLiteralDelimiters:
"%i": "[]"

Metrics/ClassLength:
Max: 260
Max: 300

Metrics/CyclomaticComplexity:
Max: 7
Expand Down
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ rvm:
- "2.1"
- "2.2"
- "2.3.0"
- "2.4.0"
- "2.5.0"
- jruby-9.0.5.0
- rbx-2
matrix:
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Geo::Coord changelog

## 0.1.0 - Feb 3, 2018

* Switch to `BigDecimal` for internal values storage;
* More friendly `#inspect` & `#to_s` format;
* Rename `#to_a` to `#latlng` & `#lnglat`;
* Fix `#lats` formula bug.

## 0.0.1 - Jun 06, 2016

Initial release as a gem.
2 changes: 1 addition & 1 deletion lib/geo/coord/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Geo
class Coord
VERSION = '0.0.1'.freeze
VERSION = '0.1.0'.freeze
end
end

0 comments on commit 08b6595

Please sign in to comment.