Skip to content

[pull] master from increments:master #9

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

Merged
merged 9 commits into from
Feb 29, 2024
Merged
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
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
## Unreleased

# 1.0.4
## 1.1.0

- Add uri to requiring libraries
- Bump rubocop 1.39.0 to 1.60.2
- Bump rouge 4.1.0 to 4.2.0

## 1.0.4

- Drop Ruby 2.7 support
- Bump qiita_marker 0.23.6 to 0.23.9
- Drop Ubuntu 18.04 support

# 1.0.3
## 1.0.3

- Bump rake version to work with ruby 3.2
- Bump rouge 3.26.0 to 4.1.0
Expand Down
9 changes: 9 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,12 @@ source "https://rubygems.org"

# Specify your gem's dependencies in qiita-markdown.gemspec
gemspec

gem "activesupport", "~> 5.2.7"
gem "bundler"
gem "codeclimate-test-reporter", "0.4.4"
gem "pry"
gem "rake"
gem "rspec", "~> 3.1"
gem "rubocop", "~> 1.60.2"
gem "simplecov", "!= 0.18.0", "!= 0.18.1", "!= 0.18.2", "!= 0.18.3", "!= 0.18.4", "!= 0.18.5", "!= 0.19.0", "!= 0.19.1"
1 change: 1 addition & 0 deletions lib/qiita/markdown.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
require "qiita_marker"
require "rouge"
require "sanitize"
require "uri"

require "qiita/markdown/embed/code_pen"
require "qiita/markdown/embed/tweet"
Expand Down
2 changes: 1 addition & 1 deletion lib/qiita/markdown/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Qiita
module Markdown
VERSION = "1.0.4"
VERSION = "1.1.0"
end
end
10 changes: 1 addition & 9 deletions qiita-markdown.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,7 @@ Gem::Specification.new do |spec|
spec.add_dependency "html-pipeline", "~> 2.0"
spec.add_dependency "mem"
spec.add_dependency "qiita_marker", "~> 0.23.9"
spec.add_dependency "rouge", "~> 4.1.0"
spec.add_dependency "rouge", "~> 4.2"
spec.add_dependency "sanitize"
spec.add_development_dependency "activesupport", "~> 5.2.7"
spec.add_development_dependency "bundler"
spec.add_development_dependency "codeclimate-test-reporter", "0.4.4"
spec.add_development_dependency "pry"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.1"
spec.add_development_dependency "rubocop", "~> 1.39.0"
spec.add_development_dependency "simplecov", "!= 0.18.0", "!= 0.18.1", "!= 0.18.2", "!= 0.18.3", "!= 0.18.4", "!= 0.18.5", "!= 0.19.0", "!= 0.19.1"
spec.metadata["rubygems_mfa_required"] = "true"
end