Skip to content

Commit

Permalink
Release 💎 v0.4.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
parkr committed Aug 1, 2014
1 parent 30152af commit 264d703
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
10 changes: 8 additions & 2 deletions History.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

### Minor Enhancements

### Bug Fixes

### Site Enhancements

### Development Fixes

## 0.4.1 / 2014-07-31

### Bug Fixes

* Update WordPress importer to use `table_prefix` everywhere (#154)
Expand All @@ -13,8 +21,6 @@

* Update site to use Jekyll 2.2 (#157)

### Development Fixes

## 0.4.0 / 2014-06-29

### Minor Enhancements
Expand Down
5 changes: 2 additions & 3 deletions jekyll-import.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ Gem::Specification.new do |s|
s.email = 'tom@mojombo.com'
s.homepage = 'http://github.com/jekyll/jekyll-import'

s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
all_files = `git ls-files`.split($/)
s.files = all_files.grep(%r{^lib/})
s.require_paths = %w[lib]

s.rdoc_options = ["--charset=UTF-8"]
Expand Down
2 changes: 1 addition & 1 deletion lib/jekyll-import/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module JekyllImport
VERSION = '0.4.0'
VERSION = '0.4.1'
end

0 comments on commit 264d703

Please sign in to comment.