Skip to content

Commit d13d2ea

Browse files
committed
Setup for next version
1 parent 329ad7d commit d13d2ea

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

History.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
== 0.5.4
2+
3+
* ???
4+
15
== 0.5.2
26

37
* Handle case where all data is zero [Silvia Pfeiffer]

Rakefile

+11
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,14 @@ end
1919

2020
desc "Release and publish documentation"
2121
task :repubdoc => [:release, :publish_docs]
22+
23+
24+
desc "Simple require on packaged files to make sure they are all there"
25+
task :verify => :package do
26+
# An error message will be displayed if files are missing
27+
if system %(ruby -e "require 'pkg/sparklines-#{Sparklines::VERSION}/lib/sparklines'")
28+
puts "\nThe library files are present"
29+
end
30+
end
31+
32+
task :release => :verify

lib/sparklines.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
=end
7676
class Sparklines
7777

78-
VERSION = '0.5.2'
78+
VERSION = '0.5.3'
7979

8080
@@label_margin = 5.0
8181
@@pointsize = 10.0

sparklines.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = %q{sparklines}
3-
s.version = "0.5.2"
3+
s.version = "0.5.3"
44

55
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
66
s.authors = ["Geoffrey Grosenbach"]

0 commit comments

Comments
 (0)