altertable 0.1.0 → 0.2.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c46dba4a691e7862c18858af04ef49a5f04be3f0517329689619093044a96281
4
- data.tar.gz: fbd8369a7db172dbc2ef4b5d836484a0513ff90ac749c2d5bf800a4515a933f3
3
+ metadata.gz: 42523b8dd9072dbe3eb2756a5a496de2c9e3db0db518b6ae2620c4c383bb7547
4
+ data.tar.gz: 4fc356b335e47bab34332d4ca42e5d4994381bd388da5079106e96b6c28d6c28
5
5
  SHA512:
6
- metadata.gz: f35d1fbda8a0a0e27d01dcb556d67393a2ca4a9ad82de9b6ee6158aaf08e7fe1c5626f505c1969a436bda3d381ee6831f2bc3d79ab15fca5a4b084d8bfac7015
7
- data.tar.gz: ed184510f935084ea09bc939094ee450894ebcfbd66652cb5656f9cc2e4e684fb5b22cc260cff16e0d1037760a4c8640465e899b1846968d2b2409786f163a31
6
+ metadata.gz: 597516dc39dfca5c441174e83dfc519ddc73a81c9a9b88eaeb666262ed255dac382b87870c183ac1c154c382d141c255eef15e0059c3bd5f25c42445f0ae71b9
7
+ data.tar.gz: 5146fdc9c3b3693ba18196ec27fa5870e6ea690647632ead38f7c1424f343a42aa76396d5cae5ce42f1471a2088da5d926e5928761c60485dc0c8037bbcbca42
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.1.0"
2
+ ".": "0.2.2"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -0,0 +1,22 @@
1
+ # Changelog
2
+
3
+ ## [0.2.2](https://github.com/altertable-ai/altertable-ruby/compare/altertable/v0.2.1...altertable/v0.2.2) (2026-03-08)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * add missing bundler/gem_tasks to Rakefile ([#16](https://github.com/altertable-ai/altertable-ruby/issues/16)) ([6d021c9](https://github.com/altertable-ai/altertable-ruby/commit/6d021c9f94d66fe491243d87ae591f0ab9303d4a)), closes [#15](https://github.com/altertable-ai/altertable-ruby/issues/15)
9
+
10
+ ## [0.2.1](https://github.com/altertable-ai/altertable-ruby/compare/altertable/v0.2.0...altertable/v0.2.1) (2026-03-08)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * read gem version dynamically from lib/altertable/version.rb ([#12](https://github.com/altertable-ai/altertable-ruby/issues/12)) ([c2720a0](https://github.com/altertable-ai/altertable-ruby/commit/c2720a08eca08534541e2262a82239f7c3f678ec))
16
+
17
+ ## [0.2.0](https://github.com/altertable-ai/altertable-ruby/compare/altertable-v0.1.0...altertable/v0.2.0) (2026-03-08)
18
+
19
+
20
+ ### Features
21
+
22
+ * optional http client (faraday/httpx/net-http) with adapter pattern ([#5](https://github.com/altertable-ai/altertable-ruby/issues/5)) ([1fb2b79](https://github.com/altertable-ai/altertable-ruby/commit/1fb2b79963977aea1d3c4d19e3fdad23b02a296f))
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- altertable (0.1.0)
4
+ altertable (0.2.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/Rakefile CHANGED
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "rspec/core/rake_task"
4
+ require "bundler/gem_tasks"
4
5
 
5
6
  RSpec::Core::RakeTask.new(:spec)
6
7
 
data/altertable.gemspec CHANGED
@@ -1,8 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require_relative "lib/altertable/version"
4
+
3
5
  Gem::Specification.new do |spec|
4
6
  spec.name = "altertable"
5
- spec.version = "0.1.0"
7
+ spec.version = Altertable::VERSION
6
8
  spec.authors = ["Altertable"]
7
9
  spec.email = ["support@api.altertable.ai"]
8
10
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Altertable
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: altertable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Altertable
@@ -200,7 +200,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
200
200
  - !ruby/object:Gem::Version
201
201
  version: '0'
202
202
  requirements: []
203
- rubygems_version: 3.6.7
203
+ rubygems_version: 3.6.9
204
204
  specification_version: 4
205
205
  summary: Altertable Product Analytics Ruby SDK
206
206
  test_files: []