xqsr3 0.39.9 → 0.39.10

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.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +8 -0
  3. data/NEWS.md +1 -0
  4. data/TODO.md +2 -0
  5. data/lib/xqsr3/version.rb +2 -2
  6. metadata +5 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bfce28587b77a393e2c0a15d21fc82bc78adfbcf8815fe0d77e37af3e1653e16
4
- data.tar.gz: 2befb6452ea13b944cb8e88eb77fedb3e8b31da84c4c1b8948fc479c271967aa
3
+ metadata.gz: 1ce217f9cec0cb4a4a2b70759636345add271ecd29e894b755af95eb02c189df
4
+ data.tar.gz: 85997e37e26ac33b6d44e19d6923e476a5f0e3826381f6344c1f4f438dbb00b4
5
5
  SHA512:
6
- metadata.gz: 8c1ba16f20398a85c7acf16a2782f87b76ca9c433ce0f3f8cc9f19960979f40865b139382b7c1f6af2eb2ed78c96a7005956b83edd06aed55abe4d38229e8f67
7
- data.tar.gz: 3d66276512e30b758f5a54f83187f3fbfd3f0d5b88f2dc2c70ebb12e62201cb7ac7a0fd91ac70088dc5aff0d259f56f19603c690ba46efb75dae6be9cd323d7e
6
+ metadata.gz: 7164b91b2b8d997ab35fbe261de3be3c445745c3d46a4c378583fcced4d5da7873e1bc0614b6ef2a4a5cba6c1b0f6f079b7374d9ca4794fa53bc6c353779ae64
7
+ data.tar.gz: a45ff408ba9fe2bd52b3733430b8390c01a9c032918a8070190abc443bdae2d20fdb13c8f1b92412e8da077b2a35458592e17930e48be9af0d88761a00a109f4
data/CHANGES.md CHANGED
@@ -1,6 +1,14 @@
1
1
  # xqsr3 - Changes <!-- omit in toc -->
2
2
 
3
3
 
4
+ ## 0.39.10 - 28th August 2026
5
+
6
+ * **Gemfile.lock** is no longer tracked in the repository, completing the **0.39.9** lockfile work (`lockfile false` in **Gemfile**, **.gitignore** entry, and `spec.files` exclusion in **xqsr3.gemspec**);
7
+ * **xqsr3.gemspec** adopts the `PROJECT_URL` idiom, defining the GitHub project URL once and reusing it for `spec.homepage` and the `spec.metadata` URIs;
8
+ * **xqsr3.gemspec**: `required_ruby_version` is now the range `>= 2.0`, `< 5`, matching the constraint form used by the other Synesis gems;
9
+ * TODO: **README.md** and **docs/*.md** introductory material for the main features;
10
+
11
+
4
12
  ## 0.39.9 - 21st August 2026
5
13
 
6
14
  * `IO.writelines` writes via `<<` of `to_s` fragments instead of interpolating into frozen strings (Ruby 3.4+ `-W`);
data/NEWS.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  | Date | News Item |
4
4
  | ------------------- | ------------------------------------------------------------------------------------ |
5
+ | 28th August 2026 | [**xqsr3** 0.39.10](https://github.com/synesissoftware/xqsr3/releases/tag/0.39.10) |
5
6
  | 21st August 2026 | [**xqsr3** 0.39.9](https://github.com/synesissoftware/xqsr3/releases/tag/0.39.9) |
6
7
  | 20th August 2026 | [**xqsr3** 0.39.8](https://github.com/synesissoftware/xqsr3/releases/tag/0.39.8) |
7
8
  | 19th August 2026 | [**xqsr3** 0.39.7](https://github.com/synesissoftware/xqsr3/releases/tag/0.39.7) |
data/TODO.md CHANGED
@@ -14,6 +14,8 @@
14
14
 
15
15
  ## Packaging improvements
16
16
 
17
+ * [ ] **README.md** and **docs/*.md** introductory elements of main features;
18
+ * [x] ~~~remove **Gemfile.lock**~~~;
17
19
  * [x] ~~~obtain a **run_all_unit_tests.sh** (from **misc-dev-scripts**) that skips `tput` when `$TERM` is unset or stdout is not a TTY (CI: `tput: No value for $TERM and no -T specified`)~~~;
18
20
  * [x] ~~~after the packaging/boilerplate/CI baseline release: bump **VERSION**, drop gemspec `required_ruby_version` `< 4` upper bound, and align **CHANGES**~~~;
19
21
  * [x] ~~~gemspec polish: `https` homepage, Rubygems `metadata` URIs, stop using `Date.today`, include **CHANGES.md** in packaged files~~~;
data/lib/xqsr3/version.rb CHANGED
@@ -5,7 +5,7 @@
5
5
  # Purpose: Version for Xqsr3 library
6
6
  #
7
7
  # Created: 3rd April 2016
8
- # Updated: 21st August 2026
8
+ # Updated: 28th August 2026
9
9
  #
10
10
  # Home: https://github.com/synesissoftware/xqsr3
11
11
  #
@@ -51,7 +51,7 @@
51
51
  module Xqsr3
52
52
 
53
53
  # Current version of the Xqsr3 library
54
- VERSION = '0.39.9'
54
+ VERSION = '0.39.10'
55
55
 
56
56
  private
57
57
  VERSION_PARTS_ = VERSION.split(/[.]/).collect { |n| n.to_i } # :nodoc:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xqsr3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.39.9
4
+ version: 0.39.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Wilson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-08-20 00:00:00.000000000 Z
11
+ date: 2026-08-28 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  eXtensions by fine Quantum for Standard Ruby and 3rd-party libraries is a
@@ -186,6 +186,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
186
186
  - - ">="
187
187
  - !ruby/object:Gem::Version
188
188
  version: '2.0'
189
+ - - "<"
190
+ - !ruby/object:Gem::Version
191
+ version: '5'
189
192
  required_rubygems_version: !ruby/object:Gem::Requirement
190
193
  requirements:
191
194
  - - ">="