Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
opoudjis committed Nov 11, 2024
1 parent 5a14707 commit 6c8f2d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/metanorma/standoc/ref_utility.rb
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def analyse_ref_dual(ret)
line = CSV.parse_line(m[:keys], liberal_parsing: true) or return ret
line.size > 1 or return ret
ret[:id] = line.first
ret[m[:type].to_sym] = line[1..-1].map(&:strip)
ret[m[:type].to_sym] = line[1..].map(&:strip)
ret
end

Expand Down
2 changes: 1 addition & 1 deletion lib/metanorma/standoc/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ def versioned(mod, flavour)
end

module Standoc
VERSION = "2.9.10".freeze
VERSION = "2.10.0".freeze
end
end
2 changes: 1 addition & 1 deletion metanorma-standoc.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
spec.add_dependency "asciidoctor", "~> 2.0.0"
spec.add_dependency "crass", "~> 1.0.0"
spec.add_dependency "iev", "~> 0.3.0"
spec.add_dependency "isodoc", "~> 2.12.0"
spec.add_dependency "isodoc", "~> 2.12.1"
spec.add_dependency "metanorma", ">= 1.6.0"
spec.add_dependency "metanorma-plugin-datastruct", "~> 0.3.0"
spec.add_dependency "metanorma-plugin-glossarist", "~> 0.2.0"
Expand Down

0 comments on commit 6c8f2d9

Please sign in to comment.