hexspace 0.2.1 → 0.3.0

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: b01d38959d851e6e96d16a2230b62e6f659089f855307959a4c27585c32a6550
4
- data.tar.gz: 5515be12059303b0e6ee12222caf04896ec8c79b23ffe519b8e9f213f957e257
3
+ metadata.gz: e13c749c0000053aa572eccab9cdb6c3da51b871cbef95f6cf59c5638eaceb73
4
+ data.tar.gz: c3f1af8f3667e99b380bdd4abe1d89db91368b8cc556b8fa69254901b93bc7cf
5
5
  SHA512:
6
- metadata.gz: 7cbfb5be0c692cae31a82b7fc9a817ea443b13549ad92d73ac3d40db371b3ecdba0cc2f7f73dec9407043d5938f00519e6cdc40f990cb9b1cd1c82e544c44e54
7
- data.tar.gz: 43fd8714dd9126d3a51246ed7f500a4da7640f2d72c039ea511dfccbd0799bb4103492eccf87ed03ea4dae09eb64c79b20a797e25d84c248596b47319a85f3d8
6
+ metadata.gz: e43089fd5f664ca5050aaaa931a1266a0f5f32af2797cb03334fdb5ec7e94b6cbea1aca49d726088a9b23d757ebe4ffd1399c1db76130b56478cbba5cd95ab11
7
+ data.tar.gz: 4f07f42c29d6fd9445fbbb6bb39a90930872996eaee197948556d8537d6ab523e11faa243e2f3f1aa9ee6578d937a6bce805e5981a8e7d5f3af5fa93e97b0465
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 0.3.0 (2025-04-03)
2
+
3
+ - Dropped support for Ruby < 3.2
4
+
5
+ ## 0.2.2 (2024-12-29)
6
+
7
+ - Added support for Ruby 3.4
8
+
1
9
  ## 0.2.1 (2023-11-12)
2
10
 
3
11
  - Added `result_object` option
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Ruby client for Apache Spark SQL and Apache Hive
4
4
 
5
- [![Build Status](https://github.com/ankane/hexspace/workflows/build/badge.svg?branch=master)](https://github.com/ankane/hexspace/actions)
5
+ [![Build Status](https://github.com/ankane/hexspace/actions/workflows/build.yml/badge.svg)](https://github.com/ankane/hexspace/actions)
6
6
 
7
7
  ## Installation
8
8
 
@@ -1,3 +1,3 @@
1
1
  module Hexspace
2
- VERSION = "0.2.1"
2
+ VERSION = "0.3.0"
3
3
  end
data/lib/hexspace.rb CHANGED
@@ -1,8 +1,8 @@
1
1
  # dependencies
2
+ require "bigdecimal"
2
3
  require "thrift"
3
4
 
4
5
  # stdlib
5
- require "bigdecimal"
6
6
  require "time"
7
7
 
8
8
  # thrift
metadata CHANGED
@@ -1,15 +1,28 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hexspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-11-13 00:00:00.000000000 Z
10
+ date: 2025-04-03 00:00:00.000000000 Z
12
11
  dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: bigdecimal
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0'
13
26
  - !ruby/object:Gem::Dependency
14
27
  name: thrift
15
28
  requirement: !ruby/object:Gem::Requirement
@@ -24,7 +37,6 @@ dependencies:
24
37
  - - ">="
25
38
  - !ruby/object:Gem::Version
26
39
  version: '0.18'
27
- description:
28
40
  email: andrew@ankane.org
29
41
  executables: []
30
42
  extensions: []
@@ -45,7 +57,6 @@ homepage: https://github.com/ankane/hexspace
45
57
  licenses:
46
58
  - Apache-2.0
47
59
  metadata: {}
48
- post_install_message:
49
60
  rdoc_options: []
50
61
  require_paths:
51
62
  - lib
@@ -53,15 +64,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
53
64
  requirements:
54
65
  - - ">="
55
66
  - !ruby/object:Gem::Version
56
- version: '3'
67
+ version: '3.2'
57
68
  required_rubygems_version: !ruby/object:Gem::Requirement
58
69
  requirements:
59
70
  - - ">="
60
71
  - !ruby/object:Gem::Version
61
72
  version: '0'
62
73
  requirements: []
63
- rubygems_version: 3.4.10
64
- signing_key:
74
+ rubygems_version: 3.6.2
65
75
  specification_version: 4
66
76
  summary: Ruby client for Apache Spark SQL and Apache Hive
67
77
  test_files: []