Skip to content

Releases: google/emboss

v2024.0930.225512

30 Sep 22:55
9b6907b
Compare
Choose a tag to compare
Bit shift design sketch (#190)

Design sketch for bit shift operators.

v2024.0926.213442

26 Sep 21:34
b519a41
Compare
Choose a tag to compare
Fix typos. (#179)

v2024.0920.190142

20 Sep 19:01
e9cc3ad
Compare
Choose a tag to compare
Fix section links in reference docs. (#188)

v2024.0920.185518

20 Sep 18:55
6faad3e
Compare
Choose a tag to compare
Merge pull request #184 from reventlov/re_fullmatch

Use `re.fullmatch` instead of `re.match`.

v2024.0920.171930

20 Sep 17:19
800bd4a
Compare
Choose a tag to compare
Fix docstring lints as reported by internal linter. (#180)

v2024.0919.220025

19 Sep 22:00
b545db0
Compare
Choose a tag to compare
Fix minor type annotation lints. (#183)

v2024.0919.220002

19 Sep 22:00
cffcf47
Compare
Choose a tag to compare
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

12 Sep 17:36
731f3d1
Compare
Choose a tag to compare
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

06 Sep 23:58
fa103b7
Compare
Choose a tag to compare
Add action to check Python formatting with black (#177)

v2024.0906.235710

06 Sep 23:57
495d3f2
Compare
Choose a tag to compare
Reformat all source with Black. (#176)