Alpha Release v0.6.0 #59
alexmadeathing
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
A minor release to introduce a few nice features and allow us to release a new library: insides. This means that dilate is officially dogfooded!
So what are the notable changes?
We are now
no_std
by default. This means that dilate is now suitable for use in embedded systems with limited memory capacity - Woohoo! We still supportstd
implementations - see Migration Notes below.Besides that, we have a number of quality of life improvements that came about as a result of dilate being dogfooded in insides.
Migration Notes
no_std
by default, you must specify thestd
feature in yourcargo.toml
if you want to use theDisplay
,Add
,AddAssign
,Sub
,SubAssign
implementations (this implies operators+
,+=
,-
, and-=
).DilatedInt
tuple constructor and tuple member.0
are no longer accessible - please usenew()
andvalue()
respectively.SupportedType
has been renamed toDilatableType
to better identify dilate typesWhat's Changed
no_std
applications by @alexmadeathing in Supportno_std
applications #54Full Changelog: v0.5.0...v0.6.0
This discussion was created from the release Alpha Release v0.6.0.
Beta Was this translation helpful? Give feedback.
All reactions