diff --git a/Gemfile.devel b/Gemfile.devel deleted file mode 100644 index e1c0692..0000000 --- a/Gemfile.devel +++ /dev/null @@ -1 +0,0 @@ -gem "metanorma-jis", git: "https://github.com/metanorma/metanorma-jis", branch: "main" diff --git a/lib/metanorma/plateau/version.rb b/lib/metanorma/plateau/version.rb index e8f4e60..f307d8c 100644 --- a/lib/metanorma/plateau/version.rb +++ b/lib/metanorma/plateau/version.rb @@ -1,5 +1,5 @@ module Metanorma module Plateau - VERSION = "0.1.4".freeze + VERSION = "0.1.5".freeze end end diff --git a/spec/metanorma/refs_spec.rb b/spec/metanorma/refs_spec.rb index e2d0e11..20c4af5 100644 --- a/spec/metanorma/refs_spec.rb +++ b/spec/metanorma/refs_spec.rb @@ -71,7 +71,7 @@ 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 @@ -79,7 +79,7 @@ .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