First non-alpha prerelease. Notable changes from the last alpha listed below.
> **Breaking Changes**:
> There are some breaking changes if coming from the previous alpha releases. All sRGB cylindrical spaces' non-hue
> data ranges are no longer scaled to 0 - 100, but use 0 - 1. Hue ranges have not changed.
- **NEW**: By accepting HSL, HSV, and HWB as non-hue channels as 0-100, we do lose a little precision, so for 1.0, we
are switching to accepting and returning raw data values between 0 - 1. We've kept hue between 0 - 360 as it is easier
for users to deal with hues between 0 - 360. Doing this will also match the new color spaces Okhsl and Okhsv that
need to be kept at 0 - 1 to get better rounding.
- **NEW**: We do not currently restrict percentages anymore in `!css-color color()` functions. There is no hard rules
that we need to at this time and no currently specified spaces that do this in the CSS specification. This is relaxed
for now until some future time when it becomes clear we must.
- **NEW**: New `okhsl` and `okhsv` color space.
- **NEW**: All color channels now accept the `none` keyword to specify an undefined channel. They can also optionally
output CSS strings with the keyword.
- **NEW**: Interpolation will return an undefined channel if both colors have that channel set to undefined.
- **NEW**: Provide a way to dump a color object to a simple dictionary and have the `Color()` object accept that
dictionary to recreate the color object.
- **NEW**: Provide `cat16` chromatic adaptation.
- **NEW**: Add `normalize` method to force channel normalization (evaluation of channels and setting undefined as
appropriate).
- **NEW**: Interpolated and composited colors will normalize undefined channels when returning a color.
- **NEW**: Jzazbz now also has an alias for `az` and `bz` channels as `a` and `b` respectively.
- **FIX**: Fix an attribute "get" issue where attributes that were not present on the `Color()` object appeared to be
present when using `hasattr()`.
- **FIX**: More accurate Oklab matrix.