valkey-glide-rb 0.9.3.pre.rc1 → 0.9.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f4e7169668b8720263d645f4a69385454d5c19ec621a9be173fff853becc4188
4
- data.tar.gz: 9c314946080eb5ca6bb0c7e90a0cb29bef087c9fe6af5465310c3699ec4238db
3
+ metadata.gz: e3c28ac646b9b41dc630b6a28396af105cf70e38c20cdd2e74ac7dde1245b952
4
+ data.tar.gz: a417f802a018a41a16c8cfbfb1a12ba68af48eb4d6e176b48e936558a87a4bcf
5
5
  SHA512:
6
- metadata.gz: ca9bc3c4e73bd4b1c2fa09bb16aeca1f4a87d6af0522c2d1c1c34b7e9d5609cf3efe832850bc610cee9a2d8fa615b59ec81f1736f692fe6e849f74c03e6fa466
7
- data.tar.gz: 9d2090d9f27e8876127eb5996f6be912c11532c02e2b1889c2007323fa4023b7a3a55058cdd3659d02993aef874bc97cb2f9f264632cced052f25ba43ba03d06
6
+ metadata.gz: '08c8c01d41da6be96ea35fbf0a582dd0676a63a96a69244d3ec14d58cbbf496935a6beafe992d750d65c100f43c54fd00bf3f0c69352b407808578821fc7eab9'
7
+ data.tar.gz: 606d32093482a5827a216bd77c371aec94b6de684cedcdeb9181dae117e1abef9feb6f5ff2d8ccda78c954504752d57dfed44a3296a46175fc4b709a50e45330
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Valkey
4
- VERSION = "0.9.3-rc1"
4
+ VERSION = "0.9.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: valkey-glide-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.3.pre.rc1
4
+ version: 0.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Valkey GLIDE Maintainers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-08-05 00:00:00.000000000 Z
11
+ date: 2026-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.17.0
19
+ version: '1.16'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 1.17.0
26
+ version: '1.16'
27
27
  description: A Ruby client library for Valkey
28
28
  email:
29
29
  executables: []
@@ -40,7 +40,6 @@ files:
40
40
  - README.md
41
41
  - Rakefile
42
42
  - THIRD_PARTY_LICENSES_RUBY
43
- - docker/manylinux2014/Dockerfile
44
43
  - examples/README.md
45
44
  - examples/cluster.rb
46
45
  - examples/opentelemetry.rb
@@ -1,18 +0,0 @@
1
- # Builds libglide_ffi.so against glibc 2.17 (CentOS 7 baseline), so the
2
- # resulting binary loads on anything with glibc >= 2.17 — covers
3
- # amazonlinux:2018.03 (2.17), amazonlinux:2 (2.26), amazonlinux:2023 (2.34).
4
- FROM quay.io/pypa/manylinux2014_x86_64
5
-
6
- ARG PROTOC_VERSION=29.1
7
-
8
- RUN yum install -y unzip && yum clean all
9
-
10
- RUN curl -sSL -o /tmp/protoc.zip \
11
- "https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip" \
12
- && unzip -q /tmp/protoc.zip -d /usr/local \
13
- && rm /tmp/protoc.zip
14
-
15
- ENV PATH="/root/.cargo/bin:${PATH}"
16
- RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable
17
-
18
- WORKDIR /workspace