Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
opoudjis committed Oct 14, 2024
1 parent 911c6de commit 676f966
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/metanorma/cli/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Metanorma
module Cli
VERSION = "1.10.9".freeze
VERSION = "1.10.10".freeze
end
end
6 changes: 3 additions & 3 deletions spec/acceptance/version_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
command = %w(version -t iso)
output = capture_stdout { Metanorma::Cli.start(command) }

expect(output).to include("Metanorma::ISO #{Metanorma::ISO::VERSION}")
expect(output).to include("Metanorma::Iso #{Metanorma::Iso::VERSION}")
end
end

Expand All @@ -18,8 +18,8 @@

expect(output).to include("Metanorma #{Metanorma::VERSION}")
expect(output).to include("Metanorma::Cli #{Metanorma::Cli::VERSION}")
expect(output).to include("Metanorma::ISO #{Metanorma::ISO::VERSION}")
expect(output).to include("Metanorma::CC #{Metanorma::CC::VERSION}")
expect(output).to include("Metanorma::Iso #{Metanorma::Iso::VERSION}")
expect(output).to include("Metanorma::Cc #{Metanorma::Cc::VERSION}")
expect(output).to include("Metanorma::Ietf #{Metanorma::Ietf::VERSION}")
end
end
Expand Down
2 changes: 1 addition & 1 deletion spec/metanorma_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@

it "gives version information" do
stdout = `metanorma -v -t iso`
expect(stdout).to match(/Metanorma::ISO \d/)
expect(stdout).to match(/Metanorma::Iso \d/)
end

it "exports assets" do
Expand Down

0 comments on commit 676f966

Please sign in to comment.