deeprails 0.15.0 → 0.16.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/deeprails/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: 0d0bb2bc489ff93e8154059bdae38683517ce5236f83cef8526137d119d16860
|
|
4
|
+
data.tar.gz: 5e50572d0197927215cd8bd5742a19f8bbf1fdc13f4bf02466b5db2024424e5a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d54b53af12982fa3338176f2344ff4692a6956e46086c4c43aaf030d58a36ed1b573038eaf81fcf8b52bc180bc8a2e54fda1d000120eaf3fea94eaae8124788
|
|
7
|
+
data.tar.gz: 2b7636cfdaf35d9efe26cfecb6f8bc3340620c9ef4e35747023bfe79bec11fb732083633865f8d4d68d3fa34f4df8b226841f91f8e9f97e40c06c5d8d059ac11
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.16.0 (2025-11-18)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.15.0...v0.16.0](https://github.com/deeprails/deeprails-ruby-sdk/compare/v0.15.0...v0.16.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** revert docs URL ([a7f8683](https://github.com/deeprails/deeprails-ruby-sdk/commit/a7f86836399d683ebd49fed5761850a2615cd0a6))
|
|
10
|
+
|
|
3
11
|
## 0.15.0 (2025-11-18)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.14.0...v0.15.0](https://github.com/deeprails/deeprails-ruby-sdk/compare/v0.14.0...v0.15.0)
|
data/README.md
CHANGED
|
@@ -6,7 +6,7 @@ The Deeprails Ruby library provides convenient access to the Deeprails REST API
|
|
|
6
6
|
|
|
7
7
|
Documentation for releases of this gem can be found [on RubyDoc](https://gemdocs.org/gems/deeprails).
|
|
8
8
|
|
|
9
|
-
The REST API documentation can be found on [docs.deeprails.
|
|
9
|
+
The REST API documentation can be found on [docs.deeprails.com](https://docs.deeprails.com).
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
|
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
|
|
|
15
15
|
<!-- x-release-please-start-version -->
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
|
-
gem "deeprails", "~> 0.
|
|
18
|
+
gem "deeprails", "~> 0.16.0"
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
<!-- x-release-please-end -->
|
data/lib/deeprails/version.rb
CHANGED