slf4j 1.5.5.1 → 1.5.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,8 @@
1
+ === 1.5.6.1 / 2008-12-06
2
+
3
+ * Upgraded to SLF4J 1.5.6
4
+ * SLF4JBase -rename-> SLF4J
5
+
1
6
  === 1.5.5.1 / 2008-11-01
2
7
 
3
8
  * Upgraded to SLF4J 1.5.5
@@ -15,12 +15,12 @@ lib/slf4j/log4j-over-slf4j.rb
15
15
  lib/slf4j/log4j12.rb
16
16
  lib/slf4j/nop.rb
17
17
  lib/slf4j/simple.rb
18
- lib/slf4j/slf4j-api-1.5.5.jar
19
- lib/slf4j/jul-to-slf4j-1.5.5.jar
20
- lib/slf4j/slf4j-jdk14-1.5.5.jar
21
- lib/slf4j/jcl-over-slf4j-1.5.5.jar
22
- lib/slf4j/slf4j-jcl-1.5.5.jar
23
- lib/slf4j/log4j-over-slf4j-1.5.5.jar
24
- lib/slf4j/slf4j-log4j12-1.5.5.jar
25
- lib/slf4j/slf4j-nop-1.5.5.jar
26
- lib/slf4j/slf4j-simple-1.5.5.jar
18
+ lib/slf4j/slf4j-api-1.5.6.jar
19
+ lib/slf4j/jul-to-slf4j-1.5.6.jar
20
+ lib/slf4j/slf4j-jdk14-1.5.6.jar
21
+ lib/slf4j/jcl-over-slf4j-1.5.6.jar
22
+ lib/slf4j/slf4j-jcl-1.5.6.jar
23
+ lib/slf4j/log4j-over-slf4j-1.5.6.jar
24
+ lib/slf4j/slf4j-log4j12-1.5.6.jar
25
+ lib/slf4j/slf4j-nop-1.5.6.jar
26
+ lib/slf4j/slf4j-simple-1.5.6.jar
data/Rakefile CHANGED
@@ -32,7 +32,6 @@ ENV['NODOT'] = "no thank you"
32
32
 
33
33
  # Instead of 'slf4j' to avoid loading slf4j-api in Rake parent loader
34
34
  require 'slf4j/base'
35
- SLF4J = SLF4JBase
36
35
 
37
36
  loaders = SLF4J::ADAPTERS.flatten.compact
38
37
  loader_files = loaders.map { |adp| "lib/slf4j/#{adp}.rb" }
@@ -97,6 +96,24 @@ task :mvn_clean do
97
96
  end
98
97
  task :clean => :mvn_clean
99
98
 
99
+ task :tag do
100
+ tag = "slf4j-#{SLF4J::VERSION}"
101
+ svn_base = 'svn://localhost/subversion.repo/src/gems'
102
+ tag_url = "#{svn_base}/tags/#{tag}"
103
+
104
+ dname = File.dirname( __FILE__ )
105
+ dname = '.' if Dir.getwd == dname
106
+ stat = `svn status #{dname}`
107
+ stat.strip! if stat
108
+ if ( stat && stat.length > 0 )
109
+ $stderr.puts( "Resolve the following before tagging (svn status):" )
110
+ $stderr.puts( stat )
111
+ else
112
+ sh( "svn cp -m 'tag [#{tag}]' #{dname} #{tag_url}" )
113
+ end
114
+ end
115
+
116
+
100
117
  hoe = Hoe.new( "slf4j", SLF4J::VERSION ) do |p|
101
118
  p.developer( "David Kellum", "dek-ruby@gravitext.com" )
102
119
  p.rubyforge_name = "rjack"
@@ -66,7 +66,6 @@ require 'java'
66
66
  # Adapter names match the corresponding SLF4J jars.
67
67
  #
68
68
  module SLF4J
69
- include SLF4JBase
70
69
 
71
70
  # Require an adapter by name (add the jar to classpath)
72
71
  # This is normally done via require 'slf4j/_name_'
@@ -195,7 +194,7 @@ module SLF4J
195
194
  Logger.new( name )
196
195
  end
197
196
 
198
- # The ILoggerFactory instance if an output adapter jas been loaded
197
+ # The ILoggerFactory instance if an output adapter has been loaded
199
198
  def self.linked_factory
200
199
  org.slf4j.LoggerFactory.getILoggerFactory
201
200
  end
@@ -23,10 +23,10 @@
23
23
  #++
24
24
 
25
25
  # Base constants for Rakefile, etc.
26
- module SLF4JBase
26
+ module SLF4J
27
27
 
28
28
  # SLF4J-java version
29
- SLF4J_VERSION = '1.5.5'
29
+ SLF4J_VERSION = '1.5.6'
30
30
  # SLF4J gem version
31
31
  VERSION = SLF4J_VERSION + '.1'
32
32
 
data/pom.xml CHANGED
@@ -12,34 +12,34 @@
12
12
  <dependency>
13
13
  <groupId>org.slf4j</groupId>
14
14
  <artifactId>slf4j-api</artifactId>
15
- <version>1.5.5</version>
15
+ <version>1.5.6</version>
16
16
  </dependency>
17
17
 
18
18
  <dependency>
19
19
  <groupId>org.slf4j</groupId>
20
20
  <artifactId>jcl-over-slf4j</artifactId> <!-- vs jcl104? -->
21
- <version>1.5.5</version>
21
+ <version>1.5.6</version>
22
22
  <scope>runtime</scope>
23
23
  </dependency>
24
24
 
25
25
  <dependency>
26
26
  <groupId>org.slf4j</groupId>
27
27
  <artifactId>jul-to-slf4j</artifactId>
28
- <version>1.5.5</version>
28
+ <version>1.5.6</version>
29
29
  <scope>runtime</scope>
30
30
  </dependency>
31
31
 
32
32
  <dependency>
33
33
  <groupId>org.slf4j</groupId>
34
34
  <artifactId>log4j-over-slf4j</artifactId>
35
- <version>1.5.5</version>
35
+ <version>1.5.6</version>
36
36
  <scope>runtime</scope>
37
37
  </dependency>
38
38
 
39
39
  <dependency>
40
40
  <groupId>org.slf4j</groupId>
41
41
  <artifactId>slf4j-jdk14</artifactId>
42
- <version>1.5.5</version>
42
+ <version>1.5.6</version>
43
43
  <scope>runtime</scope>
44
44
  <optional>true</optional>
45
45
  </dependency>
@@ -47,7 +47,7 @@
47
47
  <dependency>
48
48
  <groupId>org.slf4j</groupId>
49
49
  <artifactId>slf4j-log4j12</artifactId>
50
- <version>1.5.5</version>
50
+ <version>1.5.6</version>
51
51
  <scope>runtime</scope>
52
52
  <optional>true</optional>
53
53
  </dependency>
@@ -55,7 +55,7 @@
55
55
  <dependency>
56
56
  <groupId>org.slf4j</groupId>
57
57
  <artifactId>slf4j-jcl</artifactId>
58
- <version>1.5.5</version>
58
+ <version>1.5.6</version>
59
59
  <scope>runtime</scope>
60
60
  <optional>true</optional>
61
61
  </dependency>
@@ -63,7 +63,7 @@
63
63
  <dependency>
64
64
  <groupId>org.slf4j</groupId>
65
65
  <artifactId>slf4j-simple</artifactId>
66
- <version>1.5.5</version>
66
+ <version>1.5.6</version>
67
67
  <scope>runtime</scope>
68
68
  <optional>true</optional>
69
69
  </dependency>
@@ -71,7 +71,7 @@
71
71
  <dependency>
72
72
  <groupId>org.slf4j</groupId>
73
73
  <artifactId>slf4j-nop</artifactId>
74
- <version>1.5.5</version>
74
+ <version>1.5.6</version>
75
75
  <scope>runtime</scope>
76
76
  <optional>true</optional>
77
77
  </dependency>
File without changes
metadata CHANGED
@@ -52,15 +52,15 @@ files:
52
52
  - lib/slf4j/log4j12.rb
53
53
  - lib/slf4j/nop.rb
54
54
  - lib/slf4j/simple.rb
55
- - lib/slf4j/slf4j-api-1.5.5.jar
56
- - lib/slf4j/jul-to-slf4j-1.5.5.jar
57
- - lib/slf4j/slf4j-jdk14-1.5.5.jar
58
- - lib/slf4j/jcl-over-slf4j-1.5.5.jar
59
- - lib/slf4j/slf4j-jcl-1.5.5.jar
60
- - lib/slf4j/log4j-over-slf4j-1.5.5.jar
61
- - lib/slf4j/slf4j-log4j12-1.5.5.jar
62
- - lib/slf4j/slf4j-nop-1.5.5.jar
63
- - lib/slf4j/slf4j-simple-1.5.5.jar
55
+ - lib/slf4j/slf4j-api-1.5.6.jar
56
+ - lib/slf4j/jul-to-slf4j-1.5.6.jar
57
+ - lib/slf4j/slf4j-jdk14-1.5.6.jar
58
+ - lib/slf4j/jcl-over-slf4j-1.5.6.jar
59
+ - lib/slf4j/slf4j-jcl-1.5.6.jar
60
+ - lib/slf4j/log4j-over-slf4j-1.5.6.jar
61
+ - lib/slf4j/slf4j-log4j12-1.5.6.jar
62
+ - lib/slf4j/slf4j-nop-1.5.6.jar
63
+ - lib/slf4j/slf4j-simple-1.5.6.jar
64
64
  required_rubygems_version: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '>='
@@ -74,12 +74,12 @@ requirements: []
74
74
 
75
75
  authors:
76
76
  - David Kellum
77
- date: 2008-11-03 08:00:00 +00:00
77
+ date: 2008-12-06 08:00:00 +00:00
78
78
  platform: ruby
79
79
  test_files:
80
80
  - test/test_slf4j.rb
81
81
  version: !ruby/object:Gem::Version
82
- version: 1.5.5.1
82
+ version: 1.5.6.1
83
83
  require_paths:
84
84
  - lib
85
85
  dependencies: