Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# recls.Ruby - Changes <!-- omit in toc -->


## 2.13.5 - 30th August 2026

* updated GitHub Actions checkout references to **v7**;
* corrected shared project URL metadata in **recls-ruby.gemspec**;


## 2.13.4 - 19th August 2026

* renamed **recls.gemspec** to **recls-ruby.gemspec** so the filename stem matches `spec.name`;
Expand Down
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

| Date | News Item |
| ------------------ | ---------------------------------------------------------------------------------------------- |
| 30th August 2026 | [**recls.Ruby** 2.13.5](https://github.com/synesissoftware/recls.Ruby/releases/tag/2.13.5) |
| 19th August 2026 | [**recls.Ruby** 2.13.4](https://github.com/synesissoftware/recls.Ruby/releases/tag/2.13.4) |
| 25th April 2025 | [**recls.Ruby** 2.13.2](https://github.com/synesissoftware/recls.Ruby/releases/tag/2.13.2) |
| 2nd June 2024 | [**recls.Ruby** 2.13.1](https://github.com/synesissoftware/recls.Ruby/releases/tag/2.13.1) |
Expand Down
4 changes: 2 additions & 2 deletions lib/recls/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Purpose: Version for recls library
#
# Created: 14th February 2014
# Updated: 20th August 2026
# Updated: 30th August 2026
#
# Author: Matthew Wilson
#
Expand Down Expand Up @@ -44,7 +44,7 @@
module Recls

# Current version of the recls.Ruby library
VERSION = '2.13.4'
VERSION = '2.13.5'

private
# @!visibility private
Expand Down
15 changes: 9 additions & 6 deletions recls-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Purpose: Gemspec for recls.Ruby library
#
# Created: 14th February 2014
# Updated: 19th August 2026
# Updated: 28th August 2026
#
# ######################################################################## #

Expand All @@ -14,6 +14,9 @@ $:.unshift File.join(File.dirname(__FILE__), 'lib')
require 'recls/version'


PROJECT_URL = 'https://github.com/synesissoftware/recls.Ruby'


Gem::Specification.new do |spec|

spec.name = 'recls-ruby'
Expand All @@ -36,16 +39,16 @@ END_DESC
spec.email = [
'matthew@synesis.com.au',
]
spec.homepage = 'https://github.com/synesissoftware/recls.Ruby'
spec.homepage = PROJECT_URL
spec.license = 'BSD-3-Clause'

spec.required_ruby_version = [ '>= 1.9.3' ]

spec.metadata = {
'bug_tracker_uri' => 'https://github.com/synesissoftware/recls.Ruby/issues',
'changelog_uri' => 'https://github.com/synesissoftware/recls.Ruby/blob/master/CHANGES.md',
'homepage_uri' => 'https://github.com/synesissoftware/recls.Ruby',
'source_code_uri' => 'https://github.com/synesissoftware/recls.Ruby',
'bug_tracker_uri' => "#{PROJECT_URL}/issues",
'changelog_uri' => "#{PROJECT_URL}/blob/master/CHANGES.md",
'homepage_uri' => PROJECT_URL,
'source_code_uri' => PROJECT_URL,
}

spec.files = Dir[
Expand Down