We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87da469 commit de3b0dbCopy full SHA for de3b0db
History.markdown
@@ -1,3 +1,7 @@
1
+## 1.3.3 / 2015-08-20
2
+
3
+ * Fix gemspec to allow Ruby 1.9.3 (relates to #14)
4
5
## 1.3.2 / 2016-08-19
6
7
* Re-add support for Ruby 1.9.3. Fixes #11 for 1.9.3 (#14)
jekyll-gist.gemspec
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
spec.homepage = "https://github.com/jekyll/jekyll-gist"
13
spec.license = "MIT"
14
15
- spec.required_ruby_version = '>= 2.0'
+ spec.required_ruby_version = '>= 1.9.3'
16
17
spec.files = `git ls-files -z`.split("\x0")
18
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
lib/jekyll-gist/version.rb
@@ -1,5 +1,5 @@
module Jekyll
module Gist
- VERSION = "1.3.2"
+ VERSION = "1.3.3"
end
0 commit comments