spotted 0.19.0 → 0.20.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +3 -3
- data/lib/spotted/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4feed8d3b7407c00f5f2ec26173de4c36fc0f8e5d7f0dc14806177689a334fd8
|
|
4
|
+
data.tar.gz: 3d64b643764be1e8a2c693ca2bf12ba174123d57c292e48f5dac4db3371f2c5d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22b857d391335b9eaaca63046bc65ce084b2770546f93aaffd88acae17569f4d0c2675022753d95ce4e461923eaf649a0f722db2f090e7a7e3db7beaccd52576
|
|
7
|
+
data.tar.gz: 64f837368b21868446177a764a2c5799efd72d9e6b11b34f205b6fe61d1e9b32620aa8528f8dcbe8b13ff0374cfcb796e0cd389948c944931b628d47d1f9acf8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.20.0 (2025-12-05)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.19.0...v0.20.0](https://github.com/cjavdev/spotted/compare/v0.19.0...v0.20.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** Update readme titles. ([3382d87](https://github.com/cjavdev/spotted/commit/3382d87d9831a1dee4d35b19e7da9fbae1acba38))
|
|
10
|
+
|
|
3
11
|
## 0.19.0 (2025-11-26)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.18.0...v0.19.0](https://github.com/cjavdev/spotted/compare/v0.18.0...v0.19.0)
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Unofficial Spotify API library
|
|
2
2
|
|
|
3
|
-
The
|
|
3
|
+
The Unofficial Spotify library provides convenient access to the Spotify Web API from any Ruby 3.2.0+ application. It ships with comprehensive types & docstrings in Yard, RBS, and RBI – [see below](https://github.com/cjavdev/spotted#Sorbet) for usage with Sorbet. The standard library's `net/http` is used as the HTTP transport, with connection pooling via the `connection_pool` gem.
|
|
4
4
|
|
|
5
5
|
It is generated with [Stainless](https://www.stainless.com/).
|
|
6
6
|
|
|
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
|
|
|
17
17
|
<!-- x-release-please-start-version -->
|
|
18
18
|
|
|
19
19
|
```ruby
|
|
20
|
-
gem "spotted", "~> 0.
|
|
20
|
+
gem "spotted", "~> 0.20.0"
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
<!-- x-release-please-end -->
|
data/lib/spotted/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: spotted
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.20.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Spotted
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-12-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|