Skip to content

Commit

Permalink
Version number bumped to 1.16
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Sustrik <[email protected]>
  • Loading branch information
sustrik committed Jul 27, 2015
1 parent 5171dfe commit 7558d74
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ribosome.js
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ if (process.argv.length < 3 || process.argv[2] == "-h" ||
usage();
}
if (process.argv[2] == "-v" || process.argv[2] == "--version") {
process.stderr.write("ribosome code generator, version 1.15\n");
process.stderr.write("ribosome code generator, version 1.16\n");
process.exit(1);
}

Expand Down
2 changes: 1 addition & 1 deletion ribosome.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def rethrow(e, rnafile, linemap):
import re

# Set up the arguments parser.
parser = argparse.ArgumentParser(prog="ribosome code generator, version 1.15")
parser = argparse.ArgumentParser(prog="ribosome code generator, version 1.16")
parser.add_argument('dna', type=argparse.FileType('r'))
parser.add_argument('--rna', action='store_true')

Expand Down
2 changes: 1 addition & 1 deletion ribosome.rb
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def rnawrite(s)
usage()
end
if ARGV[0] == "-v" || ARGV[0] == "--version"
puts "ribosome code generator, version 1.15"
puts "ribosome code generator, version 1.16"
exit(1)
end
if ARGV[0] == "--rna"
Expand Down

0 comments on commit 7558d74

Please sign in to comment.