Skip to content

Commit

Permalink
Version 4.0.0 (2014-10-26)
Browse files Browse the repository at this point in the history
  • Loading branch information
sunaku committed Oct 26, 2014
1 parent 760482f commit 38b542e
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 7 deletions.
1 change: 1 addition & 0 deletions LICENSE
Expand Up @@ -6,6 +6,7 @@ Thanks to 2012 Postmodern <https://github.com/postmodern>
Thanks to 2013 Bastien Dejean <https://github.com/baskerville>
Thanks to 2013 Nick Fagerlund <https://github.com/nfagerlund>
Thanks to 2014 zimbatm <https://github.com/zimbatm>
Thanks to 2014 Mathias Panzenböck <https://github.com/panzi>

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
Expand Down
2 changes: 1 addition & 1 deletion README.markdown
Expand Up @@ -153,7 +153,7 @@ Add this snippet to your gemspec file:

s.files += Dir['man/man?/*.?'] # UNIX man pages
s.files += Dir['man/**/*.{html,css,js}'] # HTML man pages
s.add_development_dependency 'md2man', '~> 3.0'
s.add_development_dependency 'md2man', '~> 4.0'

Add this line to your Rakefile:

Expand Down
16 changes: 16 additions & 0 deletions VERSION.markdown
@@ -1,3 +1,19 @@
## Version 4.0.0 (2014-10-26)

### Major:

* Cross references are no longer expanded inside code spans and code blocks.

Thanks to Mathias Panzenböck for reporting this issue in GH-19:
https://github.com/sunaku/md2man/issues/19

* The `Md2Man::Document` module now defines the following methods. If you
redefine/override these methods in deriving classes, make sure that you
call `super()` therein to trigger these methods' original implementation!

* `Md2Man::Document#block_code(code, language)`
* `Md2Man::Document#codespan(code)`

## Version 3.0.2 (2014-10-26)

### Patch:
Expand Down
2 changes: 1 addition & 1 deletion bin/md2man-html
@@ -1,7 +1,7 @@
#!/usr/bin/env ruby
=begin =======================================================================
# MD2MAN-HTML 1 2014-10-26 3.0.2
# MD2MAN-HTML 1 2014-10-26 4.0.0
## NAME
Expand Down
2 changes: 1 addition & 1 deletion bin/md2man-rake
@@ -1,7 +1,7 @@
#!/usr/bin/env ruby
=begin =======================================================================
# MD2MAN-RAKE 1 2014-10-26 3.0.2
# MD2MAN-RAKE 1 2014-10-26 4.0.0
## NAME
Expand Down
2 changes: 1 addition & 1 deletion bin/md2man-roff
@@ -1,7 +1,7 @@
#!/usr/bin/env ruby
=begin =======================================================================
# MD2MAN-ROFF 1 2014-10-26 3.0.2
# MD2MAN-ROFF 1 2014-10-26 4.0.0
## NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/md2man/version.rb
@@ -1,3 +1,3 @@
module Md2Man
VERSION = "3.0.2"
VERSION = "4.0.0"
end
2 changes: 1 addition & 1 deletion man/man5/md2man.5.markdown
@@ -1,4 +1,4 @@
# MD2MAN 5 2014-10-26 3.0.2
# MD2MAN 5 2014-10-26 4.0.0

## NAME

Expand Down
2 changes: 1 addition & 1 deletion md2man.gemspec
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', '~> 3.0'
s.add_runtime_dependency 'binman', '~> 4.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 38b542e

Please sign in to comment.