diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f639164 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog + +## [4.0.rc01 - 2024-12-13 ] + +### Added + +### Changed +- Forked Net::SCP on https://github.com/robertcheramy/net-scp (@robertcheramy) + +### Fixed +- Handle remotes closes without eof (@robertcheramy) diff --git a/README.md b/README.md index a1ca60c..a7d680e 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,21 @@ -# Net::SCP +# Fork of Net::SCP -***Please note: this project is in maintenance mode. It is not under active -development but pull requests are very much welcome. Just be sure to include -tests! -- delano*** +> :warning: This is a fork of Net::SCP -* Docs: http://net-ssh.github.io/net-scp -* Issues: https://github.com/net-ssh/net-scp/issues -* Codes: https://github.com/net-ssh/net-scp -* Email: net-ssh@solutious.com +Upstream [Net::SCP](https://github.com/net-ssh/net-scp) is curently not +maintaned. I have tried to reach the developpers to offer to take over the +mantenance and got no response so far. I need commit +5ed618157daae8ef4d45943787ea61f714e3e870 in order to use APC devices in +[oxidized](https://github.com/ytti/oxidized). +So I will try to maintain "my" version of Net::SCP in this repository until I +find a solution with the Net::SCP team. -*As of v1.0.5, all gem releases are signed. See INSTALL.* +I plan to keep the original Major and Minor version of Net:SSCP, and +differentiate with the patch version in the format rc(number): 4.0.rc01. + +Issues and Pull Requests are welcome in this fork, just use the github +funtionality. ## DESCRIPTION: diff --git a/lib/net/scp/version.rb b/lib/net/scp/version.rb index e502b16..388731b 100644 --- a/lib/net/scp/version.rb +++ b/lib/net/scp/version.rb @@ -52,7 +52,7 @@ def to_i MINOR = 0 # The tiny component of this version of the Net::SSH library - TINY = 0 + TINY = 'rc01' # The prerelease component of this version of the Net::SSH library # nil allowed diff --git a/net-scp.gemspec b/net-scp.gemspec index 79cf1bf..522d3a9 100644 --- a/net-scp.gemspec +++ b/net-scp.gemspec @@ -23,7 +23,7 @@ Gem::Specification.new do |spec| spec.extra_rdoc_files = [ "LICENSE.txt", - "README.rdoc" + "README.md" ] spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }