userplex 0.5.0 → 0.6.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 +1 -1
- data/lib/userplex/client.rb +1 -1
- data/lib/userplex/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d84e7cc96c594d4bc6c2ac390245bf18161980bbaa48147eef3a6b60e5a53290
|
|
4
|
+
data.tar.gz: 8872e64264e661438d509f48e3829980dd2b3ef9629fd9b438694d791fe596c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ebc51eed68f8a441d5f3484da283b382f80c81079623803d9cb7bc4092c1bf859274278a7b51d0947346cb0094b987e2953fb5ee0c44d59240c13d12240e8321
|
|
7
|
+
data.tar.gz: '08924285ad50ca9a4b1b521749a415dc5eeb74ec18d465021f9297411ca90ea1213a870b1884cbc6631d11161565813048b5b8245817b43171229f26c68f1c1f'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.0 (2025-12-13)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.5.0...v0.6.0](https://github.com/dqnamo/userplex-ruby/compare/v0.5.0...v0.6.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** manual updates ([3d15220](https://github.com/dqnamo/userplex-ruby/commit/3d1522099c36bcbaeebd49d5441d4f2deaf4fca6))
|
|
10
|
+
|
|
3
11
|
## 0.5.0 (2025-12-13)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.4.0...v0.5.0](https://github.com/dqnamo/userplex-ruby/compare/v0.4.0...v0.5.0)
|
data/README.md
CHANGED
data/lib/userplex/client.rb
CHANGED
|
@@ -57,7 +57,7 @@ module Userplex
|
|
|
57
57
|
initial_retry_delay: self.class::DEFAULT_INITIAL_RETRY_DELAY,
|
|
58
58
|
max_retry_delay: self.class::DEFAULT_MAX_RETRY_DELAY
|
|
59
59
|
)
|
|
60
|
-
base_url ||= "https://userplex.app"
|
|
60
|
+
base_url ||= "https://api.userplex.app"
|
|
61
61
|
|
|
62
62
|
if api_key.nil?
|
|
63
63
|
raise ArgumentError.new("api_key is required, and can be set via environ: \"USERPLEX_API_KEY\"")
|
data/lib/userplex/version.rb
CHANGED