unicorn 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/GIT-VERSION-GEN CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/bin/sh
2
2
 
3
3
  GVF=GIT-VERSION-FILE
4
- DEF_VER=v1.0.0.GIT
4
+ DEF_VER=v1.1.1.GIT
5
5
 
6
6
  LF='
7
7
  '
data/GNUmakefile CHANGED
@@ -169,7 +169,7 @@ NEWS: GIT-VERSION-FILE .manifest
169
169
  $(RAKE) -s news_rdoc > $@+
170
170
  mv $@+ $@
171
171
 
172
- SINCE = 0.991.0
172
+ SINCE = 1.0.0
173
173
  ChangeLog: LOG_VERSION = \
174
174
  $(shell git rev-parse -q "$(GIT_VERSION)" >/dev/null 2>&1 && \
175
175
  echo $(GIT_VERSION) || git describe)
data/lib/unicorn/const.rb CHANGED
@@ -8,8 +8,8 @@ module Unicorn
8
8
  # Symbols did not really improve things much compared to constants.
9
9
  module Const
10
10
 
11
- # The current version of Unicorn, currently 1.1.0
12
- UNICORN_VERSION="1.1.0"
11
+ # The current version of Unicorn, currently 1.1.1
12
+ UNICORN_VERSION="1.1.1"
13
13
 
14
14
  DEFAULT_HOST = "0.0.0.0" # default TCP listen host address
15
15
  DEFAULT_PORT = 8080 # default TCP listen port
@@ -176,8 +176,8 @@ private
176
176
  # _entire_ request has been sent, and those will not have
177
177
  # raised EOFError on us.
178
178
  socket.close if socket
179
- raise ClientShutdown, "bytes_read=#{tmp.size}", []
180
- when HttpParserError
179
+ raise Unicorn::ClientShutdown, "bytes_read=#{tmp.size}", []
180
+ when Unicorn::HttpParserError
181
181
  e.set_backtrace([])
182
182
  end
183
183
  raise e
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicorn
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 0
10
- version: 1.1.0
9
+ - 1
10
+ version: 1.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Unicorn hackers
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-07-08 00:00:00 +00:00
18
+ date: 2010-07-11 00:00:00 +00:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency