From 395de5c64abd198ce1d7ec14c40c85794b3d5d2c Mon Sep 17 00:00:00 2001 From: Robert Cheramy Date: Mon, 16 Dec 2024 14:54:25 +0100 Subject: [PATCH] Release 4.0.3.fork --- CHANGELOG.md | 5 +++++ README.md | 3 ++- lib/net/scp/version.rb | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 975a25a..f5cdfc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [4.0.3.fork - 2024-12-13 ] +### Changed +- Versioning with patchversion and prerelese-version set to fork, to work with + dependencies from other gems (@robertcheramy) + ## [ 4.0.fork02 - 2024-12-13 ] ### Added - Integrated RuboCop for code style and quality enforcement. (@robertcheramy) diff --git a/README.md b/README.md index 99defb4..2ecf23f 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,8 @@ So I will try to maintain "my" version of Net::SCP in this repository until I find a solution with the Net::SCP team. I plan to keep the original Major and Minor version of Net:SSCP, and -differentiate with the patch version in the format fork(number): 4.0.fork01. +differentiate with the patch version and the prerelease version set to fork: +4.0.3.fork. Issues and Pull Requests are welcome in this fork, just use the github funtionality. diff --git a/lib/net/scp/version.rb b/lib/net/scp/version.rb index 3a26ef6..97981a1 100644 --- a/lib/net/scp/version.rb +++ b/lib/net/scp/version.rb @@ -55,11 +55,11 @@ def to_i MINOR = 0 # The tiny component of this version of the Net::SSH library - TINY = 'fork02'.freeze + TINY = 3 # The prerelease component of this version of the Net::SSH library # nil allowed - PRE = nil + PRE = 'fork'.freeze # The current version of the Net::SSH library as a Version instance CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact)