Skip to content

Commit

Permalink
update files for 0.2.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmario committed Nov 16, 2010
1 parent 35b680e commit 31680e9
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.rdoc
@@ -1,3 +1,23 @@
== 0.2.7 2010-11-16

* Add documentation for an overview of the Bzip2 module
* Document the class methods on Bzip2 and get them to show up in yarddoc
* Remove the ConfigError class because searching for it showed no instances of its usage
* Add a Usage section to the README and a bit about adding it to a Gemfile
* Improve the reader_spec.rb by making it more resilient in lots of places and a bit more descriptive/terse in
* Add a lot more documentation for the Reader class and also touch up the Writer class a bit
* Make the Writer specs more descriptive by giving them some doc strings.
* Wrap up documentation of the Bzip2::Writer class.
* Add lib/bzip2-ruby.rb so it's not always necessary to specify to require 'bzip2' in Gemfiles and such
* Start documenting the Bzip2::Writer class
* Fix a few compiler warnings
* Removed some dead code
* Fix for ruby 1.9 compatibility.
* Fix segfault when exiting in ruby 1.9
* Follow the newer conventions of rspec
* Migrate to using Bundler instead of Jeweler
* use malloc/free instead of ruby_xmalloc/ruby_xfree

== 0.2.6 2009-10-6 == 0.2.6 2009-10-6


* Updated to support Ruby 1.8.5 * Updated to support Ruby 1.8.5
Expand Down
2 changes: 1 addition & 1 deletion bzip2-ruby.gemspec
Expand Up @@ -15,6 +15,6 @@ Gem::Specification.new do |s|
s.files = `git ls-files`.split("\n") s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n") s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ['lib', 'ext'] s.require_paths = ['lib', 'ext']

s.add_development_dependency 'rspec', '>= 2.0.0' s.add_development_dependency 'rspec', '>= 2.0.0'
end end
4 changes: 2 additions & 2 deletions ext/extconf.rb
Expand Up @@ -3,8 +3,8 @@
dir_config('bz2') dir_config('bz2')
have_header('bzlib.h') have_header('bzlib.h')


$CFLAGS << ' -Wall -Wextra -funroll-loops' $CFLAGS << ' -Wall -funroll-loops '
# $CFLAGS << ' -O0 -ggdb' # $CFLAGS << ' -O0 -ggdb -Wextra'


if have_library("bz2", "BZ2_bzWriteOpen") if have_library("bz2", "BZ2_bzWriteOpen")
if enable_config("shared", true) if enable_config("shared", true)
Expand Down
2 changes: 1 addition & 1 deletion lib/bzip2/version.rb
@@ -1,3 +1,3 @@
module Bzip2 module Bzip2
VERSION = "0.2.6" VERSION = "0.2.7"
end end

0 comments on commit 31680e9

Please sign in to comment.