You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/changes.rst
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ Apply the following changes to code written against Amaranth 0.3 to migrate it t
28
28
* Update imports of the form ``from amaranth.vendor.some_vendor import SomeVendorPlatform`` to ``from amaranth.vendor import SomeVendorPlatform``. This change will reduce future churn.
29
29
* Replace uses of ``Const.normalize(value, shape)`` with ``Const(value, shape).value``.
30
30
* Replace uses of ``Repl(value, count)`` with ``value.replicate(count)``.
31
+
* Remove uses of ``amaranth.lib.scheduler.RoundRobin`` by inlining or copying the implementation of that class.
31
32
32
33
While code that uses the features listed as deprecated below will work in Amaranth 0.4, they will be removed in the next version.
0 commit comments