Skip to content

Releases: SEED-platform/seed

Release 1.2.0

20 Jul 00:40
Compare
Choose a tag to compare

Version 1.2.0 of SEED is primarily focused on "under the hood" updates. The first primary change is a code re-organization to conform more closely to Django best practices. The second major change is upgrading the project to use Django v1.7.

Upgrading an existing development instance can be done using the following steps:

  • Run ./manage.py migrate to make sure you're up to date with the
    old South migrations
  • Pull from origin
  • Change your environment so:
    • DJANGO_SETTINGS_MODULE=config.settings.dev
  • Copy BE/settings/local_untracked.py into config/settings
  • Run ./manage.py shell to confirm that settings are (basically)
    correct.
  • Activate the virtualenv
  • pip install -U -r requirements/local.txt
  • ./manage.py migrate audit_logs --fake
  • ./manage.py migrate data_importer --fake
  • ./manage.py migrate

Release version 1.1.5

20 May 20:42
Compare
Choose a tag to compare

Version 1.1.5 of the SEED Platform addresses the following issues

  • Issue #50: Adding first & last buttons for lists of records (PR #208)
  • Issue #20: Add filter capability for exact match or fields without data (PR #212 and PR #233)
  • Issue #200: Regenerate PM-Mapping.json (PR #216)
  • Issue #9: Progress bar between mapping and matching (PR #221)
  • Issue #12: Remember settings (PR #222)
  • Issue #8: Green button data (PR #254)

The following enhancements are also included:

  • Cleanup of the installation instructions for Mac OSX (PR #215)
  • Making the progress API backwards compatible (PR #234)

Release 1.1.4

28 Apr 01:04
Compare
Choose a tag to compare

Release 1.1.4 includes updates in mapping, matching, UI and testing.