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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0449dc6b055c04502d4a3fb704bc96fc2e93dba0931c0c51025fe971af40b608'
4
- data.tar.gz: 9ae3d090cca364ff981b241b2b23cfe81776a6c8d6e1449c9c34728d08164c1e
3
+ metadata.gz: 4feed8d3b7407c00f5f2ec26173de4c36fc0f8e5d7f0dc14806177689a334fd8
4
+ data.tar.gz: 3d64b643764be1e8a2c693ca2bf12ba174123d57c292e48f5dac4db3371f2c5d
5
5
  SHA512:
6
- metadata.gz: 420b87c2f284f15cec3bf72d6d9cf9e6622bf05eea637b0c5285bcbe459a5f33e409039de227653b1f4a829a4b67713a6633322f6b76f65f1d983c0e3ca5a580
7
- data.tar.gz: b86fcbb0c968be948f189268b2f6da130056f9ec81e3398d21d4ecd44ccedce11ba04a6d9311fa7180dabce545d59c26cda9acfc52c515b793a57bb19a0bc956
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
- # Spotted Ruby API library
1
+ # Unofficial Spotify API library
2
2
 
3
- The Spotted Ruby library provides convenient access to the Spotify 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.
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.19.0"
20
+ gem "spotted", "~> 0.20.0"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Spotted
4
- VERSION = "0.19.0"
4
+ VERSION = "0.20.0"
5
5
  end
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.19.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-26 00:00:00.000000000 Z
11
+ date: 2025-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool