Skip to content

Commit

Permalink
version 1.17
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Sustrik <[email protected]>
  • Loading branch information
sustrik committed Oct 28, 2016
1 parent a30ff8d commit 804e945
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,13 @@ Explicit commands for loading input files added:
- Several bug fixes

1.16
====

- Supports both Python 2 and Python 3
- Uses standard "node" command rather than "nodejs"
- Test system doesn't need autotools

1.17
====

- A bug fix release
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.16\n");
process.stderr.write("ribosome code generator, version 1.17\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 @@ -311,7 +311,7 @@ def rethrow(e, rnafile, linemap):

# Set up the arguments parser.
parser = argparse.ArgumentParser(
prog="ribosome code generator, version 1.16",
prog="ribosome code generator, version 1.17",
usage="%(prog)s [options] <dna_file> [-- <arguments-to-dna>*]")
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.16"
puts "ribosome code generator, version 1.17"
exit(1)
end
if ARGV[0] == "--rna"
Expand Down

0 comments on commit 804e945

Please sign in to comment.