Skip to content

Bump to 1.1.0, enabling markdown-it 13.0.x #16

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.1.0

- Move markdown-it to peerDependencies
- Allow using markdown-it 13.0.x in addition to 12.3.x

## 1.0.0

- Drop explicit support for Handlebars
Expand Down
10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
PATH
remote: .
specs:
markdown-it-html5-embed (1.0.0)
markdown-it-html5-embed (1.1.0)

GEM
remote: https://rubygems.org/
specs:
rake (12.3.3)

PLATFORMS
ruby
x86_64-linux

DEPENDENCIES
bundler (~> 1.16)
bundler (>= 1.16)
markdown-it-html5-embed!
rake (~> 12)
rake (>= 12)

BUNDLED WITH
1.16.1
2.4.6
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "markdown-it-html5-embed",
"version": "1.0.0",
"version": "1.1.0",
"homepage": "https://github.com/cmrd-senya/markdown-it-html5-embed",
"authors": [
"comrade Senya <[email protected]>",
Expand Down
6 changes: 3 additions & 3 deletions markdown-it-html5-embed.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "markdown-it-html5-embed"
spec.version = "1.0.0"
spec.version = "1.1.0"
spec.authors = ["cmrd Senya"]
spec.email = ["[email protected]"]

Expand All @@ -12,6 +12,6 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]
spec.license = "MPL-2.0"

spec.add_development_dependency "bundler", "~> 1.16"
spec.add_development_dependency "rake", "~> 12"
spec.add_development_dependency "bundler", ">= 1.16"
spec.add_development_dependency "rake", ">= 12"
end
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "markdown-it-html5-embed",
"version": "1.0.0",
"version": "1.1.0",
"description": "This is a plugin for markdown-it which adds support for embedding audio/video in the HTML5 way, by using <video>/<audio> tags.",
"main": "lib/index.js",
"scripts": {
Expand All @@ -20,8 +20,10 @@
"bugs": {
"url": "https://github.com/cmrd-senya/markdown-it-html5-embed/issues"
},
"peerDependencies": {
"markdown-it": ">=12.3.2 <13.1"
},
"dependencies": {
"markdown-it": "^12.3.2",
"mimoza": "~1.0.0"
},
"devDependencies": {
Expand Down
Loading