Skip to content

Commit

Permalink
Add changelog for 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iimog committed Nov 22, 2016
1 parent 16b8c57 commit 86c006a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
This repo contains the command line programs to import data into Fennec databases
along with documentation and instructions on how to use them.
** Changes
*** 0.4.0 <2016-11-22 Di>
- Use db schema version 0.4.0
- Add script to download IUCN data via API
- Add importer for traits in tsv format
- Add importer for taxonomies
- Add importer for alternative names
- Add importer for organism databases
*** 0.2.0 <2016-10-10 Mo>
- Table importer for updated trait database schema
*** 0.1.0 <2016-04-11 Mo>
Expand Down
2 changes: 1 addition & 1 deletion bin/import_organism_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import csv
from optparse import OptionParser

version = "0.1"
version = "0.4.0"
usage = "Usage: %prog [options --description=DESCRIPTION] --provider=PROVIDER FILE.tsv\n"
usage += "The tsv file has to have the following columns:\n"
usage += "scientific_name\tidentifier\tfennec_id\n"
Expand Down
2 changes: 1 addition & 1 deletion bin/import_organism_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import csv
from optparse import OptionParser

version = "0.1"
version = "0.4.0"
usage = "Usage: %prog [options] FILE.tsv\n"
usage += "The tsv file has to have the following columns:\n"
usage += "fennec_id\tname\ttype\n"
Expand Down
2 changes: 1 addition & 1 deletion bin/import_taxonomy.pl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ =head2 Authors
Log::Log4perl->init(\$conf);
my $log = Log::Log4perl->get_logger();

my $VERSION = '0.1';
my $VERSION = '0.4.0';

$log->debug("Started the generation of the taxonomy tree (".__FILE__.")");

Expand Down
2 changes: 1 addition & 1 deletion bin/import_traits_tsv.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import csv
from optparse import OptionParser

version = "0.1"
version = "0.4.0"
usage = "Usage: %prog [options] --trait-type=TRAIT_TYPE --user-id=USER_ID FILE.tsv\n"
usage += "The tsv file has to have the following columns:\n"
usage += "fennec_id\tvalue\tvalue_ontology\tcitation\torigin_url\tprivate\tcreation_date\tdeletion_date\n"
Expand Down

0 comments on commit 86c006a

Please sign in to comment.