jekyll-auto-thumbnails 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/jekyll-auto-thumbnails/imagemagick_wrapper.rb +1 -1
- data/lib/jekyll-auto-thumbnails/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d593b4ae0f39bd0020f6656a021327666afa8ee4776a2147d36ce3f8283a1840
|
|
4
|
+
data.tar.gz: af035e37d27382e9a8d1d15b20ea14e3a0994f2fe1d1ff312c09b4dac924829f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 89945f98a6e83a64ec2d4f20b96e827d4e408ffdda0f3340da9e99086ef156ef146a6617db1f3cb1ba7de8f34d4790f47783924fc3e02afb5e1f9a9c90506d33
|
|
7
|
+
data.tar.gz: 0b0a29fc0985c1a1930f2b1a644ed574fb4abae81fe52f0722b0a329c2731020e7cc915b7fdf8155b63e1767f2227ac409a5e2697152648d61cdca6816f59582
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.1](https://github.com/Texarkanine/jekyll-auto-thumbnails/compare/v2.0.0...v2.0.1) (2026-05-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **deps:** bump addressable from 2.8.8 to 2.9.0 ([#31](https://github.com/Texarkanine/jekyll-auto-thumbnails/issues/31)) ([e4c0312](https://github.com/Texarkanine/jekyll-auto-thumbnails/commit/e4c03124bbe1bb18183b0ffec1039cdc4f4cefb1))
|
|
9
|
+
* **deps:** bump nokogiri from 1.19.2 to 1.19.3 in the production-deps group ([#34](https://github.com/Texarkanine/jekyll-auto-thumbnails/issues/34)) ([1248eb3](https://github.com/Texarkanine/jekyll-auto-thumbnails/commit/1248eb3b81b3269210fa7d1e2fc98928803030ce))
|
|
10
|
+
* **deps:** bump nokogiri in the production-deps group ([1248eb3](https://github.com/Texarkanine/jekyll-auto-thumbnails/commit/1248eb3b81b3269210fa7d1e2fc98928803030ce))
|
|
11
|
+
|
|
3
12
|
## [2.0.0](https://github.com/Texarkanine/jekyll-auto-thumbnails/compare/v1.0.0...v2.0.0) (2026-04-24)
|
|
4
13
|
|
|
5
14
|
|
|
@@ -83,7 +83,7 @@ module JekyllAutoThumbnails
|
|
|
83
83
|
#
|
|
84
84
|
# @param cmd [String] command name
|
|
85
85
|
# @return [Boolean] true if command found
|
|
86
|
-
def self.command_exists?(cmd)
|
|
86
|
+
private_class_method def self.command_exists?(cmd)
|
|
87
87
|
cmd_name = Gem.win_platform? ? "#{cmd}.exe" : cmd
|
|
88
88
|
path_dirs = ENV["PATH"].to_s.split(File::PATH_SEPARATOR)
|
|
89
89
|
|