Skip to content

Commit

Permalink
Version 5.0.1 (2016-02-13)
Browse files Browse the repository at this point in the history
  • Loading branch information
sunaku committed Feb 13, 2016
1 parent ccdabb8 commit b1e985b
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ gem install md2man
### Development

```sh
git clone git://github.com/sunaku/md2man
git clone https://github.com/sunaku/md2man
cd md2man
bundle install
bundle exec rake --tasks # packaging tasks
Expand Down Expand Up @@ -184,7 +184,7 @@ Add this snippet to your gemspec file:
```ruby
s.files += Dir['man/man?/*.?'] # UNIX man pages
s.files += Dir['man/**/*.{html,css,js}'] # HTML man pages
s.add_development_dependency 'md2man', '~> 4.0'
s.add_development_dependency 'md2man', '~> 5.0'
```

Add this line to your Rakefile:
Expand Down
13 changes: 13 additions & 0 deletions VERSION.markdown
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## Version 5.0.1 (2016-02-13)

### Major:

* `md2man-html` now puts permalinks _after_ heading text to avoid unsightly
gaps at the beginning of each heading in text-mode browsers like w3m(1).

* Upgrade to binman version 5.x.x, which is also a major version bump.

### Other:

* README: use fenced code blocks to get syntax highlighting on GitHub.

## Version 4.0.1 (2016-02-10)

### Other:
Expand Down
2 changes: 1 addition & 1 deletion bin/md2man-html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env ruby
=begin =======================================================================
# MD2MAN-HTML 1 2016-02-10 4.0.1
# MD2MAN-HTML 1 2016-02-13 5.0.1
## NAME
Expand Down
2 changes: 1 addition & 1 deletion bin/md2man-rake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env ruby
=begin =======================================================================
# MD2MAN-RAKE 1 2016-02-10 4.0.1
# MD2MAN-RAKE 1 2016-02-13 5.0.1
## NAME
Expand Down
2 changes: 1 addition & 1 deletion bin/md2man-roff
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env ruby
=begin =======================================================================
# MD2MAN-ROFF 1 2016-02-10 4.0.1
# MD2MAN-ROFF 1 2016-02-13 5.0.1
## NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/md2man/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Md2Man
VERSION = "4.0.1"
VERSION = "5.0.1"
end
2 changes: 1 addition & 1 deletion man/man5/md2man.5.markdown
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# MD2MAN 5 2016-02-10 4.0.1
# MD2MAN 5 2016-02-13 5.0.1

## NAME

Expand Down
2 changes: 1 addition & 1 deletion md2man.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |s|
s.files += Dir['man/**/*.{html,css,js}'] # HTML man pages

s.required_ruby_version = '>= 1.9.1'
s.add_runtime_dependency 'binman', '~> 4.0'
s.add_runtime_dependency 'binman', '~> 5.0'
s.add_runtime_dependency 'redcarpet', '~> 3.0'
s.add_development_dependency 'minitest', '~> 5.0'
s.add_development_dependency 'rake', '~> 10.1'
Expand Down

0 comments on commit b1e985b

Please sign in to comment.