slf4j 1.5.6.1 → 1.5.6.2

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,7 @@
1
+ === 1.5.6.2 / 2009-04-04
2
+
3
+ * Fixed previously lost rdoc due to base vs slf4j.rb manifest order.
4
+
1
5
  === 1.5.6.1 / 2008-12-06
2
6
 
3
7
  * Upgraded to SLF4J 1.5.6
@@ -4,8 +4,8 @@ History.txt
4
4
  Rakefile
5
5
  pom.xml
6
6
  assembly.xml
7
- lib/slf4j.rb
8
7
  lib/slf4j/base.rb
8
+ lib/slf4j.rb
9
9
  test/test_slf4j.rb
10
10
  lib/slf4j/jul-to-slf4j.rb
11
11
  lib/slf4j/jdk14.rb
data/Rakefile CHANGED
@@ -53,8 +53,8 @@ History.txt
53
53
  Rakefile
54
54
  pom.xml
55
55
  assembly.xml
56
- lib/slf4j.rb
57
56
  lib/slf4j/base.rb
57
+ lib/slf4j.rb
58
58
  test/test_slf4j.rb
59
59
  END
60
60
  out.puts loader_files
@@ -98,19 +98,14 @@ task :clean => :mvn_clean
98
98
 
99
99
  task :tag do
100
100
  tag = "slf4j-#{SLF4J::VERSION}"
101
- svn_base = 'svn://localhost/subversion.repo/src/gems'
102
- tag_url = "#{svn_base}/tags/#{tag}"
103
-
104
101
  dname = File.dirname( __FILE__ )
105
102
  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}" )
103
+ sh( "git status --only #{dname}" ) do |ok,res|
104
+ if ok #changes present
105
+ raise "Commit these changes before tagging."
106
+ end
113
107
  end
108
+ sh %{git tag -s -f -m "tag [#{tag}]" "#{tag}"}
114
109
  end
115
110
 
116
111
 
@@ -28,7 +28,7 @@ module SLF4J
28
28
  # SLF4J-java version
29
29
  SLF4J_VERSION = '1.5.6'
30
30
  # SLF4J gem version
31
- VERSION = SLF4J_VERSION + '.1'
31
+ VERSION = SLF4J_VERSION + '.2'
32
32
 
33
33
  SLF4J_DIR = File.dirname(__FILE__) # :nodoc:
34
34
 
File without changes
metadata CHANGED
@@ -41,8 +41,8 @@ files:
41
41
  - Rakefile
42
42
  - pom.xml
43
43
  - assembly.xml
44
- - lib/slf4j.rb
45
44
  - lib/slf4j/base.rb
45
+ - lib/slf4j.rb
46
46
  - test/test_slf4j.rb
47
47
  - lib/slf4j/jul-to-slf4j.rb
48
48
  - lib/slf4j/jdk14.rb
@@ -74,12 +74,12 @@ requirements: []
74
74
 
75
75
  authors:
76
76
  - David Kellum
77
- date: 2008-12-06 08:00:00 +00:00
77
+ date: 2009-04-04 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.6.1
82
+ version: 1.5.6.2
83
83
  require_paths:
84
84
  - lib
85
85
  dependencies: