thin 1.2.9 → 1.2.10

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ == 1.2.10 I'm dumb
2
+ * I really am (bad release fix)
3
+
1
4
  == 1.2.9 Black Keys Extra Plus Wow
2
5
  * Improve fat binary loading.
3
6
 
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ require 'rake/clean'
7
7
  require 'rake/extensiontask' # from rake-compiler gem
8
8
 
9
9
  $: << File.join(File.dirname(__FILE__), 'lib')
10
- require 'thin'
10
+ require 'thin/version'
11
11
 
12
12
  # Load tasks in tasks/
13
13
  Dir['tasks/**/*.rake'].each { |rake| load rake }
data/lib/thin/version.rb CHANGED
@@ -6,11 +6,11 @@ module Thin
6
6
  module VERSION #:nodoc:
7
7
  MAJOR = 1
8
8
  MINOR = 2
9
- TINY = 9
9
+ TINY = 10
10
10
 
11
11
  STRING = [MAJOR, MINOR, TINY].join('.')
12
12
 
13
- CODENAME = "Black Keys Extra Plus Wow".freeze
13
+ CODENAME = "I'm dumb".freeze
14
14
 
15
15
  RACK = [1, 0].freeze # Rack protocol version
16
16
  end
Binary file
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thin
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 11
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 2
9
- - 9
10
- version: 1.2.9
9
+ - 10
10
+ version: 1.2.10
11
11
  platform: ruby
12
12
  authors:
13
13
  - Marc-Andre Cournoyer
@@ -120,7 +120,7 @@ files:
120
120
  - lib/thin/statuses.rb
121
121
  - lib/thin/version.rb
122
122
  - lib/thin.rb
123
- - lib/thin_parser.rb
123
+ - lib/thin_parser.bundle
124
124
  - spec/backends/swiftiply_client_spec.rb
125
125
  - spec/backends/tcp_server_spec.rb
126
126
  - spec/backends/unix_server_spec.rb
data/lib/thin_parser.rb DELETED
File without changes