Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
opoudjis committed Sep 2, 2024
1 parent fa3949f commit a7656be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion Gemfile.devel

This file was deleted.

2 changes: 1 addition & 1 deletion lib/metanorma/plateau/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Metanorma
module Plateau
VERSION = "0.1.4".freeze
VERSION = "0.1.5".freeze
end
end
4 changes: 2 additions & 2 deletions spec/metanorma/refs_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,15 @@
out = Nokogiri::XML(Asciidoctor.convert(input, *OPTIONS))
expect(out.xpath("//xmlns:references/xmlns:bibitem/@id")
.map(&:value))
.to be_equivalent_to ["ref4", "ref1", "ref3", "ref6", "ref5", "ref2"]
.to be_equivalent_to ["ref1", "ref3", "ref6", "ref5", "ref2", "ref4"]
end

VCR.use_cassette "sortrefs" do
out = Nokogiri::XML(Asciidoctor.convert(input
.sub("== Bibliography", "== Normative References"), *OPTIONS))
expect(out.xpath("//xmlns:references/xmlns:bibitem/@id")
.map(&:value))
.to be_equivalent_to ["ref4", "ref1", "ref3", "ref6", "ref5", "ref2"]
.to be_equivalent_to ["ref1", "ref3", "ref6", "ref5", "ref2", "ref4"]
end
end
end

0 comments on commit a7656be

Please sign in to comment.