Skip to content

Commit

Permalink
update version to 1.67
Browse files Browse the repository at this point in the history
  • Loading branch information
desmid committed Feb 13, 2020
1 parent b8980b4 commit 1cfb225
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
14 changes: 13 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
; -*- mode: Text; eval: (set-fill-column 75); -*-

Version 1.67 2020-02-16

Changes:

- Added PHIBLAST parser for BLAST+

Input formats:

- Tested with BLAST 2.10.0+
- Tested with FASTA 36.3.8h [2020-02 build]


Version 1.66.2 2019-10-17

Fix:
Bug fix:

- On Windows reading from stdin: gave parse error and lost initial lines.

Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'MView',
VERSION => '1.66.2',
VERSION => '1.67',
EXE_FILES => ['bin/mview']
);
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ systems. MView is known to work on Windows with
### Download

- The [current release](
https://sourceforge.net/projects/bio-mview/files/bio-mview/mview-1.66/
https://sourceforge.net/projects/bio-mview/files/bio-mview/mview-1.67/
"MView current release on SourceForge") can be downloaded from SourceForge
as a gzip or bzip2 compressed tar archive.
- Older [releases](
Expand Down
8 changes: 4 additions & 4 deletions bin/mview
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
#!/usr/bin/env perl

# Copyright (C) 1997-2019 Nigel P. Brown
# Copyright (C) 1997-2020 Nigel P. Brown

# This file is part of MView.
# MView is released under license GPLv2, or any later version.

###########################################################################
# Release information
###########################################################################
my $VERSION = '1.66';
my $PATCH = '2';
my $VERSION = '1.67';
my $PATCH = '';
my $PROJECT = 'MView';
my $AUTHOR = "Nigel P. Brown";
my $VERSION = $VERSION . ($PATCH ? ".$PATCH" : "");
my $COPYYRS = "1997-2019";
my $COPYYRS = "1997-2020";
my $PROJPTH = 'https://desmid.github.io/mview/';
my $AUTHMAIL = '[email protected]';

Expand Down

0 comments on commit 1cfb225

Please sign in to comment.