Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add new bill statuses #113

Merged
merged 5 commits into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
elseagle marked this conversation as resolved.
Show resolved Hide resolved

* update logs on import
Expand Down
5 changes: 4 additions & 1 deletion openstates/data/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down