Skip to content

Commit

Permalink
Update version before release
Browse files Browse the repository at this point in the history
Update CHANGES.md with major updates since last release
Update the version number in retriever_installer.iss
Update setup.py
Run version.py
  • Loading branch information
henrykironde committed Oct 26, 2017
1 parent ff8288e commit c755ad2
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 5 deletions.
52 changes: 52 additions & 0 deletions CHANGES.md
@@ -1,3 +1,55 @@
# v2.1.0

## Major changes
- Add Python interface
- Adopting the Frictionless Data specification standards
- Add Retriever to conda
- Auto complete of Retriever commands on Unix systems

## Minor changes

- Add license to datasets
- Change the structure of raw data from string to list
- USe precise on travis from trusty
- Add testing on any modified dataset
- Improve memory usage in cross-tab processing
- Add capabilitiy for datasets to use custom Encoding
- Test regression using python interface

## New datasets
- Add ant dataset and weather data to the portal dataset
- NYC TreesCount
- PREDICTS
- aquatic_animal_excretion
- biodiversity_response
- bird_migration_data
- chytr_disease_distr
- croche_vegetation_data
- dicerandra_frutescens
- flensburg_food_web
- great_basin_mammal_abundance
- macroalgal_communities
- macrocystis_variation
- marine_recruitment_data
- mediter_basin_plant_traits
- nematode_traits
- ngreatplains-flowering-dates
- portal-dev
- portal
- predator_prey_body_ratio
- predicts
- socean_diet_data
- species_exctinction_rates
- streamflow_conditions
- tree_canopy_geometries
- turtle_offspring_nesting
- Add vertnet individual datasets
vertnet_amphibians
vertnet_birds
vertnet_fishes
vertnet_mammals
vertnet_reptiles

# v2.0.0

## Major changes
Expand Down
2 changes: 1 addition & 1 deletion retriever/_version.py
@@ -1 +1 @@
__version__ = 'v2.1.dev'
__version__ = 'v2.1.0'
2 changes: 1 addition & 1 deletion retriever_installer.iss
Expand Up @@ -7,7 +7,7 @@
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{0467A404-8C83-42A2-8C25-0903FBD14D9C}
AppName=Data Retriever
AppVersion=2.0.0
AppVersion=2.1.0
AppPublisher=Weecology
AppPublisherURL=http://data-retriever.org
AppSupportURL=http://data-retriever.org
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -16,7 +16,7 @@
os.system("cp hooks/pre-commit .git/hooks/pre-commit")
os.system("chmod +x .git/hooks/pre-commit")

__version__ = 'v2.1.dev'
__version__ = 'v2.1.0'
with open(os.path.join("retriever", "_version.py"), "w") as version_file:
version_file.write("__version__ = " + "'" + __version__ + "'\n")
version_file.close()
Expand Down
4 changes: 2 additions & 2 deletions version.txt
@@ -1,4 +1,4 @@
v2.1.dev
v2.1.0
abalone_age.json,1.2.1
amniote_life_hist.py,2.0.2
antarctic_breed_bird.json,1.2.1
Expand All @@ -8,7 +8,7 @@ biodiversity_response.json,1.0.1
biomass_allometry_db.py,1.4.2
bird_migration_data.json,1.0.1
bird_size.json,1.2.2
breast_cancer_wi.json,1.1.1
breast_cancer_wi.json,1.2.1
breed_bird_survey.py,1.4.1
breed_bird_survey_50stop.py,1.4.1
butterfly_population_network.json,1.2.1
Expand Down

0 comments on commit c755ad2

Please sign in to comment.