asciidoctor-diagram 2.2.15 → 2.2.16

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.

Potentially problematic release.


This version of asciidoctor-diagram might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abbe19abb01debdac1a825fc45f134179aea8b777976bb3bf73d17c450d1e314
4
- data.tar.gz: 3e542e7db49e7dbfaebc77c7d69d88394c9856c3c24c910b49ee9282d5c4fbc6
3
+ metadata.gz: 5dfd093dfde34e811db4c81fd13bff407b0727427d4b35fddb0dc257cd6da366
4
+ data.tar.gz: 8d77d2f81168c22c6311b2f26a3c9497235359ded37664e8e3c8e92aa8c2729b
5
5
  SHA512:
6
- metadata.gz: d8fcda204a78487af2ee295eb63a0bc0bdf6f92a140fad4b424c9ee2a78032316fc1fae5779d689430c1d77d427c059df718c75239f29504e1f78950bac9d941
7
- data.tar.gz: d65c13fca70b74b91133154103c6012f9d8f944d900a06842553b5dcdb89e9095c1a01bc475ce7e55082f7987313ad84037971c66867afd40829a2bc8595f3df
6
+ metadata.gz: 414ba6dbfc0a7bc73870c2135aa8b01b7f340225066a59450a75801aeb40eeeb975329db0729e10fd33229ab325f06408e396e39e1d6cbb7d99565ada29aa14c
7
+ data.tar.gz: 8dccd7d208769ee8034e6d6dac12ad7c5c02a81970f371759906713fc9f898423298717cadadbe629c91b899cc17d84ff664acd67a9c3f467d6ffd11ea3167b2
data/CHANGELOG.adoc CHANGED
@@ -1,5 +1,11 @@
1
1
  = Asciidoctor-diagram Changelog
2
2
 
3
+ == 2.2.16
4
+
5
+ Bugfixes::
6
+
7
+ * Issue #453: Avoid internal error when WaveDrom cannot be located
8
+
3
9
  == 2.2.15
4
10
 
5
11
  Enhacements::
@@ -138,9 +138,10 @@ module Asciidoctor
138
138
 
139
139
  config[cmd_var] = cmd_path
140
140
 
141
- if cmd_path.nil? && options.fetch(:raise_on_error, true)
142
- raise "Could not find the #{cmd_names.map { |c| "'#{c}'" }.join(', ')} executable in PATH; add it to the PATH or specify its location using the '#{attr_names[0]}' document attribute"
143
- end
141
+ end
142
+
143
+ if cmd_path.nil? && options.fetch(:raise_on_error, true)
144
+ raise "Could not find the #{cmd_names.map { |c| "'#{c}'" }.join(', ')} executable in PATH; add it to the PATH or specify its location using the '#{attr_names[0]}' document attribute"
144
145
  end
145
146
 
146
147
  cmd_path
@@ -1,5 +1,5 @@
1
1
  module Asciidoctor
2
2
  module Diagram
3
- VERSION = "2.2.15"
3
+ VERSION = "2.2.16"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asciidoctor-diagram
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.15
4
+ version: 2.2.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pepijn Van Eeckhoudt