Skip to content

Commit 15c9534

Browse files
committed
Add changelog, bundle update and bump version to 0.2.0
1 parent c20ca29 commit 15c9534

File tree

3 files changed

+31
-8
lines changed

3 files changed

+31
-8
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6+
7+
## [Unreleased]
8+
9+
### Changed
10+
11+
- Update the Aggregations endpoint to automatically call `.to_json` when using Filters if needed. Thanks @joemasilotti!
12+
- Bump version to 0.2.0
13+
14+
## [0.1.2] - 2021-08-23
15+
16+
### Added
17+
18+
- Previous stable release of the ruby gem for the Fathom API.

Gemfile.lock

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,38 @@
11
PATH
22
remote: .
33
specs:
4-
fathom_api (0.1.2)
4+
fathom_api (0.2.0)
55
faraday (~> 1.7)
66
faraday_middleware (~> 1.1)
77

88
GEM
99
remote: https://rubygems.org/
1010
specs:
1111
ast (2.4.2)
12-
faraday (1.7.0)
12+
faraday (1.10.0)
1313
faraday-em_http (~> 1.0)
1414
faraday-em_synchrony (~> 1.0)
1515
faraday-excon (~> 1.1)
16-
faraday-httpclient (~> 1.0.1)
16+
faraday-httpclient (~> 1.0)
17+
faraday-multipart (~> 1.0)
1718
faraday-net_http (~> 1.0)
18-
faraday-net_http_persistent (~> 1.1)
19+
faraday-net_http_persistent (~> 1.0)
1920
faraday-patron (~> 1.0)
2021
faraday-rack (~> 1.0)
21-
multipart-post (>= 1.2, < 3)
22+
faraday-retry (~> 1.0)
2223
ruby2_keywords (>= 0.0.4)
2324
faraday-em_http (1.0.0)
2425
faraday-em_synchrony (1.0.0)
2526
faraday-excon (1.1.0)
2627
faraday-httpclient (1.0.1)
28+
faraday-multipart (1.0.3)
29+
multipart-post (>= 1.2, < 3)
2730
faraday-net_http (1.0.1)
2831
faraday-net_http_persistent (1.2.0)
2932
faraday-patron (1.0.0)
3033
faraday-rack (1.0.0)
31-
faraday_middleware (1.1.0)
34+
faraday-retry (1.0.3)
35+
faraday_middleware (1.2.0)
3236
faraday (~> 1.0)
3337
minitest (5.14.4)
3438
multipart-post (2.1.1)
@@ -62,6 +66,7 @@ GEM
6266

6367
PLATFORMS
6468
x86_64-darwin-20
69+
x86_64-darwin-21
6570
x86_64-linux
6671

6772
DEPENDENCIES
@@ -71,4 +76,4 @@ DEPENDENCIES
7176
standard
7277

7378
BUNDLED WITH
74-
2.2.25
79+
2.2.33

lib/fathom/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Fathom
4-
VERSION = "0.1.2"
4+
VERSION = "0.2.0"
55
end

0 commit comments

Comments
 (0)