Skip to content

Commit

Permalink
prepare 3.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tilsammans committed Jul 4, 2022
1 parent f62f48a commit f5ba720
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 8 deletions.
11 changes: 6 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
PATH
remote: .
specs:
rack-maintenance (2.1.0)
rack (>= 1.0)
rack-maintenance (3.0.0)
rack (>= 2.1.4)
rake (>= 12.3.3)

GEM
remote: http://rubygems.org/
specs:
diff-lcs (1.2.5)
rack (1.6.4)
rake (10.1.1)
rack (2.2.4)
rake (13.0.6)
rspec (2.14.1)
rspec-core (~> 2.14.0)
rspec-expectations (~> 2.14.0)
Expand All @@ -28,4 +29,4 @@ DEPENDENCIES
rspec (>= 2.0)

BUNDLED WITH
1.12.5
2.3.17
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Copyright (c) 2009 David Dollar
Copyright (c) 2012 - present Space Babies
Copyright (c) 2012 - 2022 Joost Baaij

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
11 changes: 11 additions & 0 deletions UPGRADING
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
******** Rack::Maintenance 3.0.0 *********

This gem now requires rack version 2.1.4 or higher.

The reason for this change is that earlier versions have
security vulnerabilities. Because of this major change, I
took the time to require up-to-date versions of all
dependencies.

Rack::Maintenance 3.0.0 should be a drop-in upgrade.


******** Rack::Maintenance 2.0.0 *********

Expand Down
2 changes: 1 addition & 1 deletion lib/rack/maintenance/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Rack
class Maintenance
VERSION = "2.1.0"
VERSION = "3.0.0"
end
end
3 changes: 2 additions & 1 deletion rack-maintenance.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Gem::Specification.new do |s|
s.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["spec/**/*"]

s.add_dependency "rack", ">= 1.0"
s.add_dependency "rack", ">= 2.1.4"
s.add_dependency "rake", ">= 12.3.3"
s.add_development_dependency "rspec", ">= 2.0"
end

0 comments on commit f5ba720

Please sign in to comment.