diagnosticism 0.1.4 → 0.1.5
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/CHANGES.md +6 -0
- data/NEWS.md +1 -0
- data/lib/diagnosticism/version.rb +2 -2
- 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: 9ad133967b3d552c93956b0f0a34998f90213fa7902e3c1606c8fd968795a867
|
|
4
|
+
data.tar.gz: ef4dac1ece04d07eacb780629687492fbbac9cae4ca4f9da1b8ab39a95257f06
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93996dfb93f52e5cc93930afd2f4d1eb4fde628ff69a167d1820312f2e218a5580f9e1132a43c08adbc5d870d4160401d1266bdf1422b09dd05e5a7b737d2103
|
|
7
|
+
data.tar.gz: c1d0493b5134d9eb326018110bd0018ee83fecf2e8e0b4b3ca5a5172d518df2764e2c3d7beec0a424d3998e99cf56be3b909ae18711dabfdf0b460445377a683
|
data/CHANGES.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Diagnosticism.Ruby - Changes <!-- omit in toc -->
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## 0.1.5 - 30th August 2026
|
|
5
|
+
|
|
6
|
+
* updated GitHub Actions checkout references to **v7**;
|
|
7
|
+
* corrected shared project URL metadata in **diagnosticism.gemspec**;
|
|
8
|
+
|
|
9
|
+
|
|
4
10
|
## 0.1.4 - 20th August 2026
|
|
5
11
|
|
|
6
12
|
* library source **Home:** URLs now use `https`;
|
data/NEWS.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
| Date | News Item |
|
|
4
4
|
| ---------------- | -------------------------------------------------------------------------------------------------------------- |
|
|
5
|
+
| 30th August 2026 | [**Diagnosticism.Ruby** 0.1.5](https://github.com/synesissoftware/Diagnosticism.Ruby/releases/tag/0.1.5) |
|
|
5
6
|
| 20th August 2026 | [**Diagnosticism.Ruby** 0.1.4](https://github.com/synesissoftware/Diagnosticism.Ruby/releases/tag/0.1.4) |
|
|
6
7
|
| 15th August 2026 | [**Diagnosticism.Ruby** 0.1.3](https://github.com/synesissoftware/Diagnosticism.Ruby/releases/tag/0.1.3) |
|
|
7
8
|
| 29th August 2025 | [**Diagnosticism.Ruby** 0.1.2](https://github.com/synesissoftware/Diagnosticism.Ruby/releases/tag/0.1.2) |
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# Purpose: Version for Diagnosticism.Ruby library
|
|
6
6
|
#
|
|
7
7
|
# Created: 3rd January 2025
|
|
8
|
-
# Updated:
|
|
8
|
+
# Updated: 30th August 2026
|
|
9
9
|
#
|
|
10
10
|
# Home: https://github.com/synesissoftware/Diagnosticism.Ruby
|
|
11
11
|
#
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
module Diagnosticism
|
|
51
51
|
|
|
52
52
|
# Current version of the Diagnosticism library
|
|
53
|
-
VERSION = '0.1.
|
|
53
|
+
VERSION = '0.1.5'
|
|
54
54
|
|
|
55
55
|
private
|
|
56
56
|
VERSION_PARTS_ = VERSION.split(/[.]/).collect { |n| n.to_i } # :nodoc:
|