Skip to content

Commit

Permalink
Version 1.15
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Sustrik <[email protected]>
  • Loading branch information
sustrik committed Jul 8, 2015
1 parent af40937 commit f556213
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,9 @@ Explicit commands for loading input files added:
- Version reporting
- Several bug fixes

1.15
====

- JavaScript versio handles newlines on Windows properly
- Several bug fixes

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.14\n");
process.stderr.write("ribosome code generator, version 1.15\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 @@ -306,7 +306,7 @@ def rethrow(e, rnafile, linemap):

# Set up the arguments parser.
parser = argparse.ArgumentParser(
version = "ribosome code generator, version 1.14")
version = "ribosome code generator, version 1.15")
parser.add_argument('dna', type=file)
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.14"
puts "ribosome code generator, version 1.15"
exit(1)
end
if ARGV[0] == "--rna"
Expand Down

0 comments on commit f556213

Please sign in to comment.