Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
delano committed Apr 11, 2014
1 parent 3b08269 commit f9e59d4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

=== 1.2.0 / 11 Apr 2014

* Get the error string during download [jkeiser]

=== 1.1.2 / 6 Jul 2013

* Explicit convert to string in shellescape [jwils]
Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ begin

s.license = "MIT"

s.signing_key = File.join('/mnt/gem/', 'gem-private_key.pem')
s.cert_chain = ['gem-public_cert.pem']
#s.signing_key = File.join('/mnt/gem/', 'gem-private_key.pem')
#s.cert_chain = ['gem-public_cert.pem']
end
Jeweler::GemcutterTasks.new
rescue LoadError
Expand Down
4 changes: 2 additions & 2 deletions lib/net/scp/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ module Net; class SCP
# Describes the current version of the Net::SCP library.
class Version < Net::SSH::Version
MAJOR = 1
MINOR = 1
TINY = 2
MINOR = 2
TINY = 0

# The current version, as a Version instance
CURRENT = new(MAJOR, MINOR, TINY)
Expand Down
8 changes: 3 additions & 5 deletions net-scp.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@

Gem::Specification.new do |s|
s.name = "net-scp"
s.version = "1.1.2"
s.version = "1.2.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jamis Buck", "Delano Mandelbaum"]
s.cert_chain = ["gem-public_cert.pem"]
s.date = "2013-07-06"
s.date = "2014-04-11"
s.description = "A pure Ruby implementation of the SCP client protocol"
s.email = "[email protected]"
s.extra_rdoc_files = [
Expand Down Expand Up @@ -43,8 +42,7 @@ Gem::Specification.new do |s|
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubyforge_project = "net-scp"
s.rubygems_version = "1.8.25"
s.signing_key = "/mnt/gem/gem-private_key.pem"
s.rubygems_version = "1.8.23"
s.summary = "A pure Ruby implementation of the SCP client protocol"

if s.respond_to? :specification_version then
Expand Down

0 comments on commit f9e59d4

Please sign in to comment.