rtsp 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,10 @@
1
- === 0.4.2 / 2012-11-14
1
+ === 0.4.3 / 2012-11-20
2
+
3
+ * Bug fixes
4
+ * Increased rtp dependency to version 0.1.2 in order to fix problems with
5
+ 0.1.1. This also drops JRuby and Rubinius support for now.
6
+
7
+ === 0.4.2 / 2012-11-20
2
8
 
3
9
  * Bug fixes
4
10
  * {gh-17}[https://github.com/turboladen/rtsp/issues/17] Can now parse HTTP
@@ -10,73 +16,87 @@
10
16
 
11
17
  === 0.4.1 / 2012-11-14
12
18
 
13
- * gh-16: Can now parse Session IDs to be alpha characters. Thanks @greywolf-colorado!
14
- * gh-17: Responses now handle HTTP responses.
19
+ * Bug fixes
20
+ * gh-16: Can now parse Session IDs to be alpha characters. Thanks @greywolf-colorado!
21
+
22
+ * Improvements
23
+ * gh-17: Responses now handle HTTP responses.
15
24
 
16
25
  === 0.4.0 / 2012-03-08
17
26
 
18
- * gh-11: Transport header parser bolstering:
19
- * values that should be caps, will parse OK as lowercase now.
20
- * :broadcast_type now parses 'multicast'.
21
- * :destination now returns the value of the destination instead of
22
- "destination=x.x.x.x"
23
- * :source now returns the value of the source instead of "source=x.x.x.x"
24
- * Added parsing for fields:
27
+ * Improvements
28
+ * gh-11: Transport header parser bolstering:
29
+ * values that should be caps, will parse OK as lowercase now.
30
+ * :broadcast_type now parses 'multicast'.
31
+ * :destination now returns the value of the destination instead of
32
+ "destination=x.x.x.x"
33
+ * :source now returns the value of the source instead of "source=x.x.x.x"
34
+ * Added parsing for fields:
25
35
  * ttl
26
36
  * port
27
37
  * ssrc
28
38
  * channel
29
39
  * address
30
40
  * mode
31
- * gh-10: Session header now detects timeout value. This means that where use
32
- of the value extracted from this header used to be a simple Integer, now you
33
- have a session Hash with :session_id and :timeout keys.
41
+ * gh-10: Session header now detects timeout value. This means that where use
42
+ of the value extracted from this header used to be a simple Integer, now you
43
+ have a session Hash with :session_id and :timeout keys.
34
44
 
35
45
  === 0.3.0 / 2012-03-02
36
46
 
37
- * Extracted RTP-esque functionality to an +rtp+ gem, on which this gem is now
38
- dependent on version 0.0.1 of that.
39
- * Laxed dependency requirement on parslet.
40
- * Bumped dependency requirement on sdp to ~> 0.2.6, due to parslet conflicts
47
+ * Bug fixes
48
+ * Bumped dependency requirement on sdp to ~> 0.2.6, due to parslet conflicts
49
+
50
+ * Improvements
51
+ * Extracted RTP-esque functionality to an +rtp+ gem, on which this gem is now
52
+ dependent on version 0.0.1 of that.
53
+ * Laxed dependency requirement on parslet.
41
54
 
42
55
  === 0.2.2 / 2011-11-02
43
56
 
44
- * Added a queue for listening and building the RTP file from the received data.
45
- * Fixed bugs:
57
+ * Bug fixes
46
58
  * gh-6: .gemspec was missing +parslet+ dependency. Thanks [tindron[http://github.com/tindron]].
47
-
59
+
60
+ * Improvements
61
+ * Added a queue for listening and building the RTP file from the received data.
62
+
48
63
  === 0.2.1 / 2011-09-20
49
64
 
50
- * `gem test rtsp` is failing; added rtsp.gemspec to list of files in the spec.
65
+ * Bug fixes
66
+ * `gem test rtsp` is failing; added rtsp.gemspec to list of files in the spec.
51
67
 
52
68
  === 0.2.0 / 2011-09-19
53
69
 
54
- * Changed RTSP::Capturer init_*_server methods to take params in order to reduce
55
- dependency on state of the Capturer object.
56
- * Improvements:
70
+ * Bug fixes
71
+ * gh-5: Fixed 'Bad file descriptor' bug when capturing to file.
72
+
73
+ * Improvements
57
74
  * If RTSP::Capturer can't open port 9000, it increments by 1 and tries again,
58
75
  50 times, then raises.
59
76
  * gh-4: Remove dependency on ore en lieu of standard gem commands.
60
77
  * Participate in http://test.rubygems.org!
61
- * Fixed bugs:
62
- * gh-5: Fixed 'Bad file descriptor' bug when capturing to file.
78
+ * Changed RTSP::Capturer init_*_server methods to take params in order to reduce
79
+ dependency on state of the Capturer object.
63
80
 
64
81
  === 0.1.2 / 2011-04-14
65
82
 
66
- * Manually released; the gemspec that Ore created didn't install bin/rtsp_client.
83
+ * Bug fixes
84
+ * Manually released; the gemspec that Ore created didn't install bin/rtsp_client.
67
85
 
68
86
  === 0.1.1 / 2011-04-14
69
87
 
70
- * Fixed bugs:
88
+ * Bug fixes
71
89
  * gh-1: No longer use Socket::SO_REUSEADDR or Socket::SO_REUSEPORT.
72
90
  * gh-2: rtsp_client now requires the installed rtsp/client.
73
- * Capturer#run's log message now says what it's logging.
74
- * bin/rtsp_client:
75
- * Fixed bad description for --stream.
76
- * Added --version.
77
- * Updated README.rdoc:
78
- * ...to clarify that REDIRECT isn't yet supported.
79
- * ...with brief usage on bin/rtsp_client.
91
+
92
+ * Improvements
93
+ * Capturer#run's log message now says what it's logging.
94
+ * bin/rtsp_client:
95
+ * Fixed bad description for --stream.
96
+ * Added --version.
97
+ * Updated README.rdoc:
98
+ * ...to clarify that REDIRECT isn't yet supported.
99
+ * ...with brief usage on bin/rtsp_client.
80
100
 
81
101
  === 0.1.0 / 2011-04-12
82
102
 
@@ -1,4 +1,4 @@
1
1
  module RTSP
2
2
  # rtsp version
3
- VERSION = "0.4.2"
3
+ VERSION = "0.4.3"
4
4
  end
@@ -26,7 +26,7 @@ http://www.ietf.org/rfc/rfc2326.txt}
26
26
  s.test_files = Dir.glob("{spec,features}/**/*")
27
27
 
28
28
  s.add_runtime_dependency "parslet", ">= 1.1.0"
29
- s.add_runtime_dependency "rtp", ">= 0.1.1"
29
+ s.add_runtime_dependency "rtp", ">= 0.1.2"
30
30
  s.add_runtime_dependency "sdp", "~> 0.2.6"
31
31
 
32
32
  s.add_development_dependency "bundler"
@@ -21,7 +21,7 @@ describe RTSP do
21
21
  RTSP.const_defined?('VERSION').should be_true
22
22
  end
23
23
 
24
- it "has version 0.4.2" do
25
- RTSP::VERSION.should == '0.4.2'
24
+ it "has version 0.4.3" do
25
+ RTSP::VERSION.should == '0.4.3'
26
26
  end
27
27
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rtsp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -36,7 +36,7 @@ dependencies:
36
36
  requirements:
37
37
  - - ! '>='
38
38
  - !ruby/object:Gem::Version
39
- version: 0.1.1
39
+ version: 0.1.2
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
@@ -44,7 +44,7 @@ dependencies:
44
44
  requirements:
45
45
  - - ! '>='
46
46
  - !ruby/object:Gem::Version
47
- version: 0.1.1
47
+ version: 0.1.2
48
48
  - !ruby/object:Gem::Dependency
49
49
  name: sdp
50
50
  requirement: !ruby/object:Gem::Requirement