diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c9a1f51e..7e791e1a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 3.0.2 +### Changed +The currently-undocumented `psiturk-heroku-config` command no longer attaches a postgresql addon by default. +I'm calling this just a bugfix because (1) the docs assume that it _doesn't_ attach the psql database, and +(2) that command isn't even documented anyway. Will version-feature-bump when this feature is better +thought through. + ## 3.0.1 ### Fixed & Changed - fixed an inconsistency between shell usage of "allowlist-qualification-ids" and diff --git a/psiturk/do_heroku_setup.py b/psiturk/do_heroku_setup.py index 49521eb67..95c882dd6 100644 --- a/psiturk/do_heroku_setup.py +++ b/psiturk/do_heroku_setup.py @@ -71,7 +71,7 @@ def do_heroku_setup(): _check_heroku_app_set() _set_heroku_config_vars() _copy_heroku_files() - _add_postgresql_db() + # _add_postgresql_db() print() print("Heroku config done.") diff --git a/psiturk/version.py b/psiturk/version.py index f59a880fb..35a9397e8 100644 --- a/psiturk/version.py +++ b/psiturk/version.py @@ -1 +1 @@ -version_number = '3.0.1' +version_number = '3.0.2'