Releases: google/emboss
Releases · google/emboss
v2024.0920.190142
Fix section links in reference docs. (#188)
v2024.0920.185518
Merge pull request #184 from reventlov/re_fullmatch Use `re.fullmatch` instead of `re.match`.
v2024.0920.171930
Fix docstring lints as reported by internal linter. (#180)
v2024.0919.220025
Fix minor type annotation lints. (#183)
v2024.0919.220002
Replace various `assert*()` calls with more specific ones. (#181) * Replace various `assert*()` calls with more specific ones. * Replace various `assert*()` calls with more specific ones.
v2024.0912.173622
Cast to ValueType before ValueIsOk check (#186) This allows using a larger backing value type to assign a UInt or Int value when the value itself fits within the range of the internal value type. Previously this would fail to compile if `-Wshorten-64-to-32` was specified when building with `clang`: ``` UIntView<FixedSizeViewParameters<16, AllValuesAreOk>> view; size_t value = 200; view.TryToWrite(value); ``` Fixes #185
v2024.0906.235824
Add action to check Python formatting with black (#177)
v2024.0906.235710
Reformat all source with Black. (#176)
v2024.0906.235142
Fix `constexpr` functions to be C++11-compatible. (#178)
v2024.0906.020253
Add `visibility` to the IR rule. This is accomplished by allowing `visibility` to be picked up by `kwargs`.