Skip to content

Commit

Permalink
Version update
Browse files Browse the repository at this point in the history
  • Loading branch information
sandal committed Dec 10, 2007
1 parent d5880ff commit b925e3c
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -52,7 +52,7 @@ end

mkdir_p "pkg"
spec = eval(File.read("pdf-writer.gemspec"))
spec.version = "1.1.4"
spec.version = "1.1.5"
desc "Build the RubyGem for PDF::Writer"
task :gem => [ :test ]
Rake::GemPackageTask.new(spec) do |g|
Expand Down
1 change: 0 additions & 1 deletion lib/pdf/charts/stddev.rb
Expand Up @@ -20,7 +20,6 @@
# The scale of responses is the vertical scale; the average data points
# and standard deviation values are the horizontal scale.
class PDF::Charts::StdDev
VERSION = '1.1.4'

# A data element.
DataPoint = Struct.new(:label, :average, :stddev)
Expand Down
1 change: 0 additions & 1 deletion lib/pdf/quickref.rb
Expand Up @@ -51,7 +51,6 @@
# qr.lines "Text to put after the header."
# qr.save_as "MyQuickRef.pdf"
class PDF::QuickRef
VERSION = '1.1.4'

# Create the quick reference document. +paper+ is passed unchanged to
# the PDF::Writer.new; the page is always created landscape. Margins
Expand Down
1 change: 0 additions & 1 deletion lib/pdf/simpletable.rb
Expand Up @@ -14,7 +14,6 @@
# This class will create tables with a relatively simple API and internal
# implementation.
class PDF::SimpleTable
VERSION = '1.1.4'

include Transaction::Simple

Expand Down
2 changes: 1 addition & 1 deletion lib/pdf/writer.rb
Expand Up @@ -19,7 +19,7 @@
module PDF
class Writer
# The version of PDF::Writer.
VERSION = '1.1.4'
VERSION = '1.1.5'

# Escape the text so that it's safe for insertion into the PDF
# document.
Expand Down

0 comments on commit b925e3c

Please sign in to comment.