diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c342c59d..27003743a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## 6.17.5 - August 9, 2023 + +* Add new bill statuses to validation + +## 6.17.4 - August 2, 2023 + +* Small territory fixes + +## 6.17.3 - August 1, 2023 + +* update pyyaml dependency + +## 6.17.2 - August 1, 2023 + +* Support additional territories in db init + +## 6.17.0 - July 14, 2023 + +* Add additional US territory support#113 + ## 6.16.5 - May 16, 2023 * update logs on import diff --git a/openstates/data/common.py b/openstates/data/common.py index c4122c7a6..426713ac2 100644 --- a/openstates/data/common.py +++ b/openstates/data/common.py @@ -119,7 +119,10 @@ ("hearing-held", "Public Hearing Held/Scheduled"), ("work-session", "Work Session Held/Scheduled"), ("sponsorship", "Authorship/Sponsorship Details"), - ("carried-over", "Carried Over from Previous Session") + ("carried-over", "Carried Over from Previous Session"), + ("reported-out-of-committee", "Reported Out of Committee"), + ("concurrence", "Sent for Concurrence") + ) BILL_ACTION_CLASSIFICATIONS = _keys(BILL_ACTION_CLASSIFICATION_CHOICES) diff --git a/pyproject.toml b/pyproject.toml index 926d0d142..9a1fd351a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openstates" -version = "6.17.4" +version = "6.17.5" description = "core infrastructure for the openstates project" authors = ["James Turk "] license = "MIT"