rjack-httpclient-4 4.2.2.0-java → 4.2.3.0-java

Sign up to get free protection for your applications and to get access to all the features.
data/History.rdoc CHANGED
@@ -1,3 +1,7 @@
1
+ === 4.2.3.0 (2013-2-6)
2
+ * Upgrade to httpclient 4.2.3, httpcore 4.2.3
3
+ * Broaden commons-codec dep to >= 1.6.0, < 1.8
4
+
1
5
  === 4.2.2.0 (2012-11-9)
2
6
  * Upgrade to httpclient 4.2.2, httpcore 4.2.2
3
7
 
data/Manifest.txt CHANGED
@@ -8,5 +8,5 @@ pom.xml
8
8
  lib/rjack-httpclient-4/base.rb
9
9
  lib/rjack-httpclient-4.rb
10
10
  test/test_httpclient.rb
11
- lib/rjack-httpclient-4/httpclient-4.2.2.jar
12
- lib/rjack-httpclient-4/httpcore-4.2.2.jar
11
+ lib/rjack-httpclient-4/httpclient-4.2.3.jar
12
+ lib/rjack-httpclient-4/httpcore-4.2.3.jar
data/NOTICE.txt CHANGED
@@ -1,5 +1,5 @@
1
1
  rjack-httpclient-4 gem
2
- Copyright (c) 2008-2012 David Kellum
2
+ Copyright (c) 2008-2013 David Kellum
3
3
 
4
4
  This product includes software developed by:
5
5
 
data/README.rdoc CHANGED
@@ -49,7 +49,7 @@ See {org.apache.http.client.HttpClient}[http://hc.apache.org/httpcomponents-clie
49
49
 
50
50
  === rjack-httpclient-4 gem
51
51
 
52
- Copyright (c) 2008-2012 David Kellum
52
+ Copyright (c) 2008-2013 David Kellum
53
53
 
54
54
  Licensed under the Apache License, Version 2.0 (the "License"); you
55
55
  may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2012 David Kellum
2
+ # Copyright (c) 2008-2013 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2012 David Kellum
2
+ # Copyright (c) 2008-2013 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -16,7 +16,7 @@
16
16
 
17
17
  module RJack
18
18
  module HTTPClient4
19
- HTTPCLIENT_VERSION = '4.2.2'
19
+ HTTPCLIENT_VERSION = '4.2.3'
20
20
  VERSION = HTTPCLIENT_VERSION + '.0'
21
21
 
22
22
  HTTPCLIENT_DIR = File.dirname( __FILE__ ) # :nodoc:
data/pom.xml CHANGED
@@ -16,7 +16,7 @@
16
16
  <dependency>
17
17
  <groupId>org.apache.httpcomponents</groupId>
18
18
  <artifactId>httpclient</artifactId>
19
- <version>4.2.2</version>
19
+ <version>4.2.3</version>
20
20
  <exclusions>
21
21
  <exclusion>
22
22
  <groupId>commons-logging</groupId>
@@ -28,7 +28,7 @@
28
28
  <dependency>
29
29
  <groupId>org.apache.httpcomponents</groupId>
30
30
  <artifactId>httpcore</artifactId>
31
- <version>4.2.2</version>
31
+ <version>4.2.3</version>
32
32
  </dependency>
33
33
 
34
34
  <!--
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2008-2012 David Kellum
5
+ # Copyright (c) 2008-2013 David Kellum
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
8
8
  # may not use this file except in compliance with the License. You
metadata CHANGED
@@ -2,14 +2,14 @@
2
2
  name: rjack-httpclient-4
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 4.2.2.0
5
+ version: 4.2.3.0
6
6
  platform: java
7
7
  authors:
8
8
  - David Kellum
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-10 00:00:00.000000000 Z
12
+ date: 2013-02-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rjack-slf4j
@@ -37,15 +37,21 @@ dependencies:
37
37
  name: rjack-commons-codec
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
- - - ~>
40
+ - - ! '>='
41
41
  - !ruby/object:Gem::Version
42
42
  version: 1.6.0
43
+ - - <
44
+ - !ruby/object:Gem::Version
45
+ version: '1.8'
43
46
  none: false
44
47
  requirement: !ruby/object:Gem::Requirement
45
48
  requirements:
46
- - - ~>
49
+ - - ! '>='
47
50
  - !ruby/object:Gem::Version
48
51
  version: 1.6.0
52
+ - - <
53
+ - !ruby/object:Gem::Version
54
+ version: '1.8'
49
55
  none: false
50
56
  prerelease: false
51
57
  type: :runtime
@@ -116,8 +122,8 @@ files:
116
122
  - lib/rjack-httpclient-4/base.rb
117
123
  - lib/rjack-httpclient-4.rb
118
124
  - test/test_httpclient.rb
119
- - lib/rjack-httpclient-4/httpclient-4.2.2.jar
120
- - lib/rjack-httpclient-4/httpcore-4.2.2.jar
125
+ - lib/rjack-httpclient-4/httpclient-4.2.3.jar
126
+ - lib/rjack-httpclient-4/httpcore-4.2.3.jar
121
127
  homepage: http://rjack.rubyforge.org/httpclient-4
122
128
  licenses: []
123
129
  post_install_message: