eodhd.rb 0.19.2 → 0.19.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +176 -134
  3. data/lib/Eodhd/VERSION.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5130ae1cc51cf9d621280e3e51ad2d9274c19a717c944aa03a8abb2f19e54956
4
- data.tar.gz: cba9ed61b8001bb3935009e2822ccbcdfba8b92edb11543928a9556956cc7ed4
3
+ metadata.gz: bf9f799dd630f653d4eabbde725b6eda7345f00c4ded60708a1d973ffad84035
4
+ data.tar.gz: 7fa8162ea63990980612bd56ea1b665783017da8a5faa2bbb61e7eb8942e16d7
5
5
  SHA512:
6
- metadata.gz: 073fd80ed78e280378140b6ef0e27d720e60af54733f16b799b519b0c478f6ef0d88c912b768ed418a7e1af749b519da672a59e6aacb123b11bb524ce01bed96
7
- data.tar.gz: 7cb3cda154644e3d109fb7d8e6e47dce39604c6bd407920362bcad846cc04f8fbaf39c2e75010a0aac7e3a66bf251be676c41bbe642ce05c0046d9a5d30cb4a7
6
+ metadata.gz: 0413f143de4c4653d932b7949cc0bef9e2d7c0eee72a118067edbbe437169f19276beaa862ee5678d0aeaf9a85e169c2ebdaa2eef0be5cd2ab04cf590df7cdf7
7
+ data.tar.gz: 645045d3b3fdb3c2a33ea41e36af1c4bf7ee52b4d15ae15b99741317cefe802e051f5614a3a336f5bc790de66e1d43f696284f1edb4795f22de2e74dd13f4daa
data/CHANGELOG CHANGED
@@ -1,134 +1,176 @@
1
- # eodhd.rb/CHANGELOG
2
-
3
- ## [0.19.2] - 2026-08-21, populate the .gitignore
4
- - ~ .gitignore: + current default contents. The file held only its filename comment, having been committed that way.
5
- - ~ Eodhd/VERSION: /0.19.1/0.19.2/
6
-
7
- ## [0.19.1] - 2026-07-19, blank lines before the code fences in the README
8
- - ~ README.md: + a blank line before each code fence, without which the highlighting does not render.
9
- - ~ Eodhd/VERSION: /0.19.0/0.19.1/
10
-
11
- ## [0.19.0] - 2026-07-19, complete the fundamentals model wrapping
12
- - + Eodhd::Fundamentals::Financials::BalanceSheet::Entry: Typed entry for a balance sheet period (64 fields).
13
- - + Eodhd::Fundamentals::Financials::IncomeStatement::Entry: Typed entry for an income statement period (34 fields).
14
- - + Eodhd::Fundamentals::Financials::CashFlow::Entry: Typed entry for a cash flow period (32 fields).
15
- - + Eodhd::Fundamentals::Earnings::AnnualEntry
16
- - + Eodhd::Fundamentals::Earnings::HistoryEntry
17
- - + Eodhd::Fundamentals::Earnings::TrendEntry
18
- - + Eodhd::Fundamentals::Holders::Institution: Typed entry for an institutional holder.
19
- - + Eodhd::Fundamentals::Holders::Fund: Typed entry for a fund holder.
20
- - + Eodhd::Fundamentals::InsiderTransaction: Typed entry for an insider transaction.
21
- - + Eodhd::Fundamentals::OutstandingShares::Entry: Typed entry for an outstanding shares data point.
22
- - + Eodhd::Fundamentals::OutstandingShares: Wraps annual and quarterly OutstandingShares::Entry arrays.
23
- - + Eodhd::Fundamentals::Financials::BalanceSheet
24
- - + Eodhd::Fundamentals::Financials::IncomeStatement
25
- - + Eodhd::Fundamentals::Financials::CashFlow
26
- - ~ Eodhd::Fundamentals::Financials: Build BalanceSheet/IncomeStatement/CashFlow instead of the shared Statement.
27
- - ~ Eodhd::Fundamentals::Financials::BalanceSheet#yearly, #quarterly: Now sorted arrays of typed entries, was raw hashes.
28
- - ~ Eodhd::Fundamentals::Earnings#annual, #history, #trend: Now sorted arrays of typed entries, was raw hashes.
29
- - ~ Eodhd::Fundamentals::Holders#institutions, #funds: Now arrays of typed entries, was raw hashes.
30
- - ~ Eodhd::Fundamentals#insider_transactions: Now a sorted array of InsiderTransaction, was a raw hash.
31
- - ~ Eodhd::Fundamentals#outstanding_shares: Now an OutstandingShares object, was a raw hash.
32
- - + test/Eodhd/Fundamentals_test.rb: Cover the newly wrapped entry types and collections.
33
- - - Eodhd::Fundamentals::Financials::Statement: Replaced by the three per-statement classes.
34
- - ~ Eodhd/VERSION: /0.18.1/0.19.0/
35
-
36
- ## [0.18.1] - 2026-07-19, urlencode helper naming consistency
37
- - /Thoran::String::UrlEncode#url_encode/Thoran::String::Urlencode#urlencode/ (url_encode kept as an alias).
38
- - /Thoran::Hash::XWwwFormUrlEncode#x_www_form_url_encode/Thoran::Hash::XWwwFormUrlencode#x_www_form_urlencode/ (x_www_form_url_encode kept as an alias).
39
- - ~ lib/Hash/x_www_form_urlencode.rb: Renamed urlencode require path.
40
- - ~ eodhd.rb.gemspec: - spec.date (RubyGems stamps the build date); tidy spec.require_paths placement.
41
- - ~ Eodhd/VERSION: /0.18.0/0.18.1/
42
-
43
- ## [0.18.0] - 2026-03-20, + fundamentals endpoint
44
- - + Eodhd::Fundamentals: Model for fundamental data with typed sub-objects.
45
- - + Eodhd::Fundamentals::General
46
- - + Eodhd::Fundamentals::Highlights
47
- - + Eodhd::Fundamentals::Valuation
48
- - + Eodhd::Fundamentals::SharesStats
49
- - + Eodhd::Fundamentals::Technicals
50
- - + Eodhd::Fundamentals::SplitsDividends
51
- - + Eodhd::Fundamentals::AnalystRatings
52
- - + Eodhd::Fundamentals::Holders
53
- - + Eodhd::Fundamentals::ESGScores
54
- - + Eodhd::Fundamentals::Earnings
55
- - + Eodhd::Fundamentals::Financials
56
- - + Eodhd::Fundamentals::Financials::Statement
57
- - + Eodhd::Client#fundamentals: Fetch fundamental data for a symbol.
58
- - + Eodhd#fundamentals: Facade method for fundamental data.
59
- - + test/Eodhd/Fundamentals_test.rb
60
- - ~ test/Eodhd/Client_test.rb: + tests for fundamentals endpoint.
61
- - ~ test/Eodhd_test.rb: + test for fundamentals facade method.
62
- - ~ test/helper.rb: + require 'minitest/mock' for minitest 6 compatibility.
63
- - ~ Eodhd: Move initialize, web_socket, stream to private.
64
- - ~ Eodhd: + safe navigation (&.) on exchange and exchange_symbol across all methods.
65
- - ~ Eodhd#intraday: + exchange_symbol argument.
66
- - ~ Eodhd#intraday: - default exchange_code of 'US'
67
- - ~ test/: Reorganise test files into test/Eodhd/ subdirectory.
68
- - - test/test_all.rb: Previously replaced by Rakefile.
69
- - /CHANGELOG.txt/CHANGELOG/
70
- - + LICENSE: MIT License.
71
- - ~ README.md: Rewrite with intraday, fundamentals, and WebSocket documentation.
72
-
73
- ## [0.17.0] - 2025-10-05, + intraday endpoint
74
- - + Eodhd::Intraday: Model for intraday data.
75
- - + Eodhd::Client#intraday: Fetch intraday data for US stocks.
76
- - + Eodhd#intraday: Facade method for intraday data.
77
- - + Eodhd::Validations#validate_interval: Validation of intraday intervals (1m, 5m, 15m, 30m, 1h, 4h, 1d, 1w, 1mo).
78
- - ~ Eodhd::Validations#validate_arguments: + interval argument.
79
- - ~ test/validations_test.rb: + tests for validate_interval.
80
- - ~ test/client_test.rb: + tests for intraday endpoint.
81
- - ~ test/eodhd_test.rb: + tests for intraday facade method.
82
-
83
- ## [0.16.0] - 2025-10-05, + automated tests, + DefaultLogger, fix WebSocket bugs, improve validations
84
- - + Eodhd::DefaultLogger: A shared logger for Client and WebSocketClient.
85
- - ~ Eodhd::Client: Use DefaultLogger.
86
- - ~ Eodhd::Client#initialize: + logger, use_default_logger arguments.
87
- - + Eodhd::Client#use_logging?
88
- - ~ Eodhd::Validations: Move validate_arguments() from Client to Validations.
89
- - ~ Eodhd::Validations: Remove ! from all validation methods (validate_exchange_code, validate_symbol, etc).
90
- - ~ Eodhd::WebSocketClient: Use DefaultLogger, add logger attribute.
91
- - ~ Eodhd::WebSocketClient#initialize: + logger, use_default_logger arguments.
92
- - + Eodhd::WebSocketClient#use_logging?: Check if logging is enabled.
93
- - ~ Eodhd::WebSocketClient::Handler: Remove duplicate logger code.
94
- - ~ Eodhd::WebSocketClient::Handler#initialize: + logger argument.
95
- - ~ Eodhd::WebSocketClient::Handler#handle_response: Fix JSON parsing with proper StandardError rescue.
96
- - ~ Eodhd::WebSocketClient::Handler#log_error: Use instance logger with use_logging? check.
97
- - + test/validations_test.rb: Comprehensive validation tests with edge cases.
98
- - + test/client_test.rb: REST client tests with VCR for all endpoints.
99
- - + test/eodhd_test.rb: Facade delegation tests.
100
- - + test/web_socket_client_test.rb: WebSocket client tests with stubbed Iodine.
101
- - + test/helper.rb: VCR configuration with WebMock.
102
- - ~ eodhd.gemspec: Add iodine as runtime dependency.
103
- - ~ .gitignore: + Gemfile.lock.
104
-
105
- ## [0.15.0] - 2025-09-16, Add validations, response logging, a version constant, and CHANGELOG.
106
- - + Eodhd::Validations
107
- - + Eodhd::Client#validate_arguments
108
- - ~ Eodhd::Client#exchange_symbol_list: Use validate_arguments().
109
- - ~ Eodhd::Client#eod_data: Use validate_arguments().
110
- - ~ Eodhd::Client#eod_bulk_last_day: Use validate_arguments().
111
- - + Eodhd::Client#log_response
112
- - ~ Eodhd::Client#do_request: Call log_request() after construction of args.
113
- - ~ Eodhd::Client#handle_response: Use log_response().
114
- - + Eodhd::VERSION
115
- - ~ eodhd.gemspec: Use Eodhd::VERSION and update the date.
116
- - + CHANGELOG.txt
117
-
118
- ## [0.14.2] - 2025-03-26, Remove reference to currently unused library UnixTime.
119
- - ~ Eodhd::WebSocketClient: - require 'UnixTime'
120
-
121
- ## [0.14.1] - 2025-03-23, Some fixes for the WebSocketClient interface.
122
- - ~ Eodhd::WebSocketClient: + attr_accessor :consumer
123
- - ~ Eodhd::WebSocketClient: /attr_accessor :symbols/attr_reader :symbols/
124
- - + Eodhd::WebSocketClient#symbols=
125
-
126
- ## [0.14.0] - 2025-03-21, Add WebSockets.
127
- - + Eodhd::WebSocketClient
128
- - + Eodhd#web_socket
129
- - + Eodhd#stream
130
- - + Eodhd#us_quote_stream
131
- - + Eodhd#us_trade_stream
132
- - + Eodhd#forex_stream
133
- - + Eodhd#crypto_stream
134
- - ~ Eodhd::Error: lib/Eodhd/Client.rb --> lib/Eodhd/Error.rb
1
+ # CHANGELOG
2
+
3
+ ## 20260821
4
+
5
+ 0.19.3: Rewrite the CHANGELOG in the form changelogger writes.
6
+
7
+ 1. ~ CHANGELOG: The Keep a Changelog form, `## [version] - date, summary` over `- ` bullets, --> the form the rest of these gems use: a `## YYYYMMDD` heading per date, newest first, holding each of that date's versions as a summary line over numbered items. No item was reworded, dropped or reordered, and all 111 are still here.
8
+ 2. ~ CHANGELOG: 20260719 carried three headings, for 0.18.1, 0.19.0 and 0.19.1, so one day's work read as three; 20251005 carried two, for 0.16.0 and 0.17.0. One heading each now, the versions under them in the same order they were in.
9
+ 3. ~ CHANGELOG: The version summaries are the commit subjects, which three of them had not been: 0.19.2 read "populate the .gitignore" against a commit saying `~ .gitignore: + current default contents`, 0.19.1 likewise, and 0.19.0 differed in case. Every other repo here keeps the two identical, which is what makes a summary checkable against something.
10
+ 4. ~ CHANGELOG: /# eodhd.rb\/CHANGELOG/# CHANGELOG/, the file's own name being no part of what it records.
11
+ 5. ~ Eodhd/VERSION: /0.19.2/0.19.3/
12
+
13
+ 0.19.2: ~ .gitignore: + current default contents
14
+
15
+ 1. ~ .gitignore: + current default contents. The file held only its filename comment, having been committed that way.
16
+ 2. ~ Eodhd/VERSION: /0.19.1/0.19.2/
17
+
18
+
19
+ ## 20260719
20
+
21
+ 0.19.1: ~ README.md: + a blank line before each code fence.
22
+
23
+ 1. ~ README.md: + a blank line before each code fence, without which the highlighting does not render.
24
+ 2. ~ Eodhd/VERSION: /0.19.0/0.19.1/
25
+
26
+ 0.19.0: Complete the fundamentals model wrapping.
27
+
28
+ 1. + Eodhd::Fundamentals::Financials::BalanceSheet::Entry: Typed entry for a balance sheet period (64 fields).
29
+ 2. + Eodhd::Fundamentals::Financials::IncomeStatement::Entry: Typed entry for an income statement period (34 fields).
30
+ 3. + Eodhd::Fundamentals::Financials::CashFlow::Entry: Typed entry for a cash flow period (32 fields).
31
+ 4. + Eodhd::Fundamentals::Earnings::AnnualEntry
32
+ 5. + Eodhd::Fundamentals::Earnings::HistoryEntry
33
+ 6. + Eodhd::Fundamentals::Earnings::TrendEntry
34
+ 7. + Eodhd::Fundamentals::Holders::Institution: Typed entry for an institutional holder.
35
+ 8. + Eodhd::Fundamentals::Holders::Fund: Typed entry for a fund holder.
36
+ 9. + Eodhd::Fundamentals::InsiderTransaction: Typed entry for an insider transaction.
37
+ 10. + Eodhd::Fundamentals::OutstandingShares::Entry: Typed entry for an outstanding shares data point.
38
+ 11. + Eodhd::Fundamentals::OutstandingShares: Wraps annual and quarterly OutstandingShares::Entry arrays.
39
+ 12. + Eodhd::Fundamentals::Financials::BalanceSheet
40
+ 13. + Eodhd::Fundamentals::Financials::IncomeStatement
41
+ 14. + Eodhd::Fundamentals::Financials::CashFlow
42
+ 15. ~ Eodhd::Fundamentals::Financials: Build BalanceSheet/IncomeStatement/CashFlow instead of the shared Statement.
43
+ 16. ~ Eodhd::Fundamentals::Financials::BalanceSheet#yearly, #quarterly: Now sorted arrays of typed entries, was raw hashes.
44
+ 17. ~ Eodhd::Fundamentals::Earnings#annual, #history, #trend: Now sorted arrays of typed entries, was raw hashes.
45
+ 18. ~ Eodhd::Fundamentals::Holders#institutions, #funds: Now arrays of typed entries, was raw hashes.
46
+ 19. ~ Eodhd::Fundamentals#insider_transactions: Now a sorted array of InsiderTransaction, was a raw hash.
47
+ 20. ~ Eodhd::Fundamentals#outstanding_shares: Now an OutstandingShares object, was a raw hash.
48
+ 21. + test/Eodhd/Fundamentals_test.rb: Cover the newly wrapped entry types and collections.
49
+ 22. - Eodhd::Fundamentals::Financials::Statement: Replaced by the three per-statement classes.
50
+ 23. ~ Eodhd/VERSION: /0.18.1/0.19.0/
51
+
52
+ 0.18.1: urlencode helper naming consistency
53
+
54
+ 1. /Thoran::String::UrlEncode#url_encode/Thoran::String::Urlencode#urlencode/ (url_encode kept as an alias).
55
+ 2. /Thoran::Hash::XWwwFormUrlEncode#x_www_form_url_encode/Thoran::Hash::XWwwFormUrlencode#x_www_form_urlencode/ (x_www_form_url_encode kept as an alias).
56
+ 3. ~ lib/Hash/x_www_form_urlencode.rb: Renamed urlencode require path.
57
+ 4. ~ eodhd.rb.gemspec: - spec.date (RubyGems stamps the build date); tidy spec.require_paths placement.
58
+ 5. ~ Eodhd/VERSION: /0.18.0/0.18.1/
59
+
60
+
61
+ ## 20260320
62
+
63
+ 0.18.0: + fundamentals endpoint
64
+
65
+ 1. + Eodhd::Fundamentals: Model for fundamental data with typed sub-objects.
66
+ 2. + Eodhd::Fundamentals::General
67
+ 3. + Eodhd::Fundamentals::Highlights
68
+ 4. + Eodhd::Fundamentals::Valuation
69
+ 5. + Eodhd::Fundamentals::SharesStats
70
+ 6. + Eodhd::Fundamentals::Technicals
71
+ 7. + Eodhd::Fundamentals::SplitsDividends
72
+ 8. + Eodhd::Fundamentals::AnalystRatings
73
+ 9. + Eodhd::Fundamentals::Holders
74
+ 10. + Eodhd::Fundamentals::ESGScores
75
+ 11. + Eodhd::Fundamentals::Earnings
76
+ 12. + Eodhd::Fundamentals::Financials
77
+ 13. + Eodhd::Fundamentals::Financials::Statement
78
+ 14. + Eodhd::Client#fundamentals: Fetch fundamental data for a symbol.
79
+ 15. + Eodhd#fundamentals: Facade method for fundamental data.
80
+ 16. + test/Eodhd/Fundamentals_test.rb
81
+ 17. ~ test/Eodhd/Client_test.rb: + tests for fundamentals endpoint.
82
+ 18. ~ test/Eodhd_test.rb: + test for fundamentals facade method.
83
+ 19. ~ test/helper.rb: + require 'minitest/mock' for minitest 6 compatibility.
84
+ 20. ~ Eodhd: Move initialize, web_socket, stream to private.
85
+ 21. ~ Eodhd: + safe navigation (&.) on exchange and exchange_symbol across all methods.
86
+ 22. ~ Eodhd#intraday: + exchange_symbol argument.
87
+ 23. ~ Eodhd#intraday: - default exchange_code of 'US'
88
+ 24. ~ test/: Reorganise test files into test/Eodhd/ subdirectory.
89
+ 25. - test/test_all.rb: Previously replaced by Rakefile.
90
+ 26. /CHANGELOG.txt/CHANGELOG/
91
+ 27. + LICENSE: MIT License.
92
+ 28. ~ README.md: Rewrite with intraday, fundamentals, and WebSocket documentation.
93
+
94
+
95
+ ## 20251005
96
+
97
+ 0.17.0: + intraday endpoint
98
+
99
+ 1. + Eodhd::Intraday: Model for intraday data.
100
+ 2. + Eodhd::Client#intraday: Fetch intraday data for US stocks.
101
+ 3. + Eodhd#intraday: Facade method for intraday data.
102
+ 4. + Eodhd::Validations#validate_interval: Validation of intraday intervals (1m, 5m, 15m, 30m, 1h, 4h, 1d, 1w, 1mo).
103
+ 5. ~ Eodhd::Validations#validate_arguments: + interval argument.
104
+ 6. ~ test/validations_test.rb: + tests for validate_interval.
105
+ 7. ~ test/client_test.rb: + tests for intraday endpoint.
106
+ 8. ~ test/eodhd_test.rb: + tests for intraday facade method.
107
+
108
+ 0.16.0: + automated tests, + DefaultLogger, fix WebSocket bugs, improve validations
109
+
110
+ 1. + Eodhd::DefaultLogger: A shared logger for Client and WebSocketClient.
111
+ 2. ~ Eodhd::Client: Use DefaultLogger.
112
+ 3. ~ Eodhd::Client#initialize: + logger, use_default_logger arguments.
113
+ 4. + Eodhd::Client#use_logging?
114
+ 5. ~ Eodhd::Validations: Move validate_arguments() from Client to Validations.
115
+ 6. ~ Eodhd::Validations: Remove ! from all validation methods (validate_exchange_code, validate_symbol, etc).
116
+ 7. ~ Eodhd::WebSocketClient: Use DefaultLogger, add logger attribute.
117
+ 8. ~ Eodhd::WebSocketClient#initialize: + logger, use_default_logger arguments.
118
+ 9. + Eodhd::WebSocketClient#use_logging?: Check if logging is enabled.
119
+ 10. ~ Eodhd::WebSocketClient::Handler: Remove duplicate logger code.
120
+ 11. ~ Eodhd::WebSocketClient::Handler#initialize: + logger argument.
121
+ 12. ~ Eodhd::WebSocketClient::Handler#handle_response: Fix JSON parsing with proper StandardError rescue.
122
+ 13. ~ Eodhd::WebSocketClient::Handler#log_error: Use instance logger with use_logging? check.
123
+ 14. + test/validations_test.rb: Comprehensive validation tests with edge cases.
124
+ 15. + test/client_test.rb: REST client tests with VCR for all endpoints.
125
+ 16. + test/eodhd_test.rb: Facade delegation tests.
126
+ 17. + test/web_socket_client_test.rb: WebSocket client tests with stubbed Iodine.
127
+ 18. + test/helper.rb: VCR configuration with WebMock.
128
+ 19. ~ eodhd.gemspec: Add iodine as runtime dependency.
129
+ 20. ~ .gitignore: + Gemfile.lock.
130
+
131
+
132
+ ## 20250916
133
+
134
+ 0.15.0: Add validations, response logging, a version constant, and CHANGELOG.
135
+
136
+ 1. + Eodhd::Validations
137
+ 2. + Eodhd::Client#validate_arguments
138
+ 3. ~ Eodhd::Client#exchange_symbol_list: Use validate_arguments().
139
+ 4. ~ Eodhd::Client#eod_data: Use validate_arguments().
140
+ 5. ~ Eodhd::Client#eod_bulk_last_day: Use validate_arguments().
141
+ 6. + Eodhd::Client#log_response
142
+ 7. ~ Eodhd::Client#do_request: Call log_request() after construction of args.
143
+ 8. ~ Eodhd::Client#handle_response: Use log_response().
144
+ 9. + Eodhd::VERSION
145
+ 10. ~ eodhd.gemspec: Use Eodhd::VERSION and update the date.
146
+ 11. + CHANGELOG.txt
147
+
148
+
149
+ ## 20250326
150
+
151
+ 0.14.2: Remove reference to currently unused library UnixTime.
152
+
153
+ 1. ~ Eodhd::WebSocketClient: - require 'UnixTime'
154
+
155
+
156
+ ## 20250323
157
+
158
+ 0.14.1: Some fixes for the WebSocketClient interface.
159
+
160
+ 1. ~ Eodhd::WebSocketClient: + attr_accessor :consumer
161
+ 2. ~ Eodhd::WebSocketClient: /attr_accessor :symbols/attr_reader :symbols/
162
+ 3. + Eodhd::WebSocketClient#symbols=
163
+
164
+
165
+ ## 20250321
166
+
167
+ 0.14.0: Add WebSockets.
168
+
169
+ 1. + Eodhd::WebSocketClient
170
+ 2. + Eodhd#web_socket
171
+ 3. + Eodhd#stream
172
+ 4. + Eodhd#us_quote_stream
173
+ 5. + Eodhd#us_trade_stream
174
+ 6. + Eodhd#forex_stream
175
+ 7. + Eodhd#crypto_stream
176
+ 8. ~ Eodhd::Error: lib/Eodhd/Client.rb --> lib/Eodhd/Error.rb
data/lib/Eodhd/VERSION.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Eodhd
2
- VERSION = '0.19.2'
2
+ VERSION = '0.19.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eodhd.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.2
4
+ version: 0.19.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoran