diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-14 18:52:48 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-14 18:52:50 -0800 |
commit | 54c4b6cd67c7f8190dc7dfb4da6ad99dc2101c82 (patch) | |
tree | f121a1deebef99a639ff82bc241eb44f2d5bc8ef /rust/fatcat-api-spec/src/models.rs | |
parent | 610b0a6550c758529cf6c34587f45e483a240df4 (diff) | |
download | fatcat-54c4b6cd67c7f8190dc7dfb4da6ad99dc2101c82.tar.gz fatcat-54c4b6cd67c7f8190dc7dfb4da6ad99dc2101c82.zip |
fix date/datetime confusion on rust/API side
Should have dug in to this earlier; python code was getting confused.
This is a breaking API change, from a practical standpoint, as both
python and rust code had been hacked to work around this.
Diffstat (limited to 'rust/fatcat-api-spec/src/models.rs')
-rw-r--r-- | rust/fatcat-api-spec/src/models.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/fatcat-api-spec/src/models.rs b/rust/fatcat-api-spec/src/models.rs index ed37b58a..73418c45 100644 --- a/rust/fatcat-api-spec/src/models.rs +++ b/rust/fatcat-api-spec/src/models.rs @@ -536,7 +536,7 @@ pub struct ReleaseEntity { #[serde(rename = "release_date")] #[serde(skip_serializing_if = "Option::is_none")] - pub release_date: Option<chrono::DateTime<chrono::Utc>>, + pub release_date: Option<chrono::NaiveDate>, #[serde(rename = "release_status")] #[serde(skip_serializing_if = "Option::is_none")] |