Relax Kramdown version to 0.14. Fixes #808.
This commit is contained in:
parent
35c3ef05bf
commit
ac8c7a0944
|
@ -3,6 +3,7 @@
|
||||||
* Refactored jekyll commands into subcommands: build, serve, and migrate. (#690)
|
* Refactored jekyll commands into subcommands: build, serve, and migrate. (#690)
|
||||||
* Removed importers/migrators from main project, migrated to jekyll-import sub-gem (#793)
|
* Removed importers/migrators from main project, migrated to jekyll-import sub-gem (#793)
|
||||||
* Minor Enhancements
|
* Minor Enhancements
|
||||||
|
* Relaxed Kramdown version to 0.14 (#808)
|
||||||
* Aliased `jekyll server` to `jekyll serve`. (#792)
|
* Aliased `jekyll server` to `jekyll serve`. (#792)
|
||||||
* Updated gem versions for Kramdown, Rake, Shoulda, Cucumber, and RedCarpet. (#744)
|
* Updated gem versions for Kramdown, Rake, Shoulda, Cucumber, and RedCarpet. (#744)
|
||||||
* Refactored jekyll subcommands into Jekyll::Commands submodule, which now contains them (#768)
|
* Refactored jekyll subcommands into Jekyll::Commands submodule, which now contains them (#768)
|
||||||
|
|
|
@ -27,7 +27,7 @@ Gem::Specification.new do |s|
|
||||||
s.add_runtime_dependency('classifier', "~> 1.3")
|
s.add_runtime_dependency('classifier', "~> 1.3")
|
||||||
s.add_runtime_dependency('directory_watcher', "~> 1.1")
|
s.add_runtime_dependency('directory_watcher', "~> 1.1")
|
||||||
s.add_runtime_dependency('maruku', "~> 0.5")
|
s.add_runtime_dependency('maruku', "~> 0.5")
|
||||||
s.add_runtime_dependency('kramdown', "~> 0.14.1")
|
s.add_runtime_dependency('kramdown', "~> 0.14")
|
||||||
s.add_runtime_dependency('pygments.rb', "~> 0.3.2")
|
s.add_runtime_dependency('pygments.rb', "~> 0.3.2")
|
||||||
s.add_runtime_dependency('commander', "~> 4.1.3")
|
s.add_runtime_dependency('commander', "~> 4.1.3")
|
||||||
s.add_runtime_dependency('safe_yaml', "~> 0.4")
|
s.add_runtime_dependency('safe_yaml', "~> 0.4")
|
||||||
|
|
Loading…
Reference in New Issue