spotted 0.3.0 → 0.4.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 +2 -2
- data/lib/spotted/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: 0327511d3f7632182098667902cd5cd228d2470f95bbaec5eb50708cbe1eabc7
|
|
4
|
+
data.tar.gz: c8e8664a697319f6c2142156c48e2edcf805a65f32d0b780bd7352bebb82fbf0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 194ca906ae851592c5c7490dbdde4e6b1b58a960f548666effee77d0c755ba20d48aa0c66473d9abddc775515d2d8120d49acb3c6d3f830e1a0506679eb0cc31
|
|
7
|
+
data.tar.gz: 9960a452be806304c04a51635fc443a750f20d6a8976a01aedb50272cf57053d74dac68e59f976d148c3de9aeccc017ff2275e8bcb32778b72823517e64c664f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.4.0 (2025-11-04)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.3.0...v0.4.0](https://github.com/cjavdev/spotted/compare/v0.3.0...v0.4.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** Adds custom helper for datetime conversion ([0ccda3c](https://github.com/cjavdev/spotted/commit/0ccda3c28aff1f0443d804ff902e261aaae903b9))
|
|
10
|
+
|
|
3
11
|
## 0.3.0 (2025-11-04)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.2.0...v0.3.0](https://github.com/cjavdev/spotted/compare/v0.2.0...v0.3.0)
|
data/README.md
CHANGED
|
@@ -8,7 +8,7 @@ It is generated with [Stainless](https://www.stainless.com/).
|
|
|
8
8
|
|
|
9
9
|
Documentation for releases of this gem can be found [on RubyDoc](https://gemdocs.org/gems/spotted).
|
|
10
10
|
|
|
11
|
-
The REST API documentation can be found on [
|
|
11
|
+
The REST API documentation can be found on [spotted.stldocs.com](https://spotted.stldocs.com).
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
14
14
|
|
|
@@ -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.4.0"
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
<!-- x-release-please-end -->
|
data/lib/spotted/version.rb
CHANGED