Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
ai word salad
This pull request includes several changes to the
ryo3
library, focusing on updating the behavior of various structs and classes to be compatible with thefrozen
attribute. Additionally, some redundant code has been commented out to maintain compatibility with thefrozen
attribute.Updates to
frozen
attribute:crates/ryo3-http/src/status_code.rs
: Added thefrozen
attribute to theHttpStatus
class.crates/ryo3-jiff/src/ry_date.rs
: Added thefrozen
attribute to theDate
andDateSeries
classes. [1] [2]crates/ryo3-jiff/src/ry_datetime.rs
: Added thefrozen
attribute to theDateTime
andDateTimeSeries
classes. [1] [2]crates/ryo3-jiff/src/ry_time.rs
: Added thefrozen
attribute to theTime
andTimeSeries
classes. [1] [2]Commented out incompatible methods:
crates/ryo3-jiff/src/ry_date.rs
: Commented out__isub__
and__iadd__
methods in theRyDate
class due to incompatibility withfrozen
. [1] [2]crates/ryo3-jiff/src/ry_datetime.rs
: Commented out__isub__
and__iadd__
methods in theRyDateTime
class due to incompatibility withfrozen
. [1] [2]crates/ryo3-jiff/src/ry_time.rs
: Commented out__isub__
and__iadd__
methods in theRyTime
class due to incompatibility withfrozen
. [1] [2]crates/ryo3-jiff/src/ry_timestamp.rs
: Commented out__isub__
and__iadd__
methods in theRyTimestamp
class due to incompatibility withfrozen
. [1] [2]Documentation update:
CHANGELOG.md
: Updated the changelog to include the date for versionv0.0.31
and added a note about the changes to internal structs/classes to be compatible withfrozen
. [1] [2]