Releases: EmbarkStudios/cfg-expr
Releases · EmbarkStudios/cfg-expr
Release 0.14.0
Changed
- PR#57 updated the builtin target list to 1.67.0.
Release 0.13.0
Changed
- PR#56 updated the builtin target list to 1.66.0. Thanks @sunshowers!
Release 0.12.0
Changed
- PR#53 updated the builtin target list to 1.65.0. Thanks @sunshowers!
Added
- PR#54 added support for
abi, which is currently nightly only, but should have no affect on stable. Thanks @carols10cents!
Release 0.11.0
Changed
- PR#51 updated the builtin target list to 1.64.0. Thanks @sunshowers!
- PR#51 bumped the MSRV to 1.58.0.
Release 0.10.3
Added
- PR#49 added support for the
has_target_atomic = "<ptr | integer>"andpanic = "<strategy>"predicates. Thanks @sunshowers!
Release 0.10.2
Changed
- PR#48 updated the builtin target list to 1.59.0.
Release 0.10.1
Fixed
- PR#46 fixed comparison of dynamic target families.
Release 0.10.0
Changed
- PR#44 added support for multiple target families that are available from Rust 1.58.0+. Thanks @sunshowers!
Release 0.9.1
Changed
- PR#42 updated the builtin target list to 1.58.0. Thanks @sunshowers!
Release 0.9.0
Changed
- PR#35 changed
TargetInfo,Os,Arch,Env, andVendorto use aCow<'static, str>to avoid the need for lifetime parameters for the common case of statically known target information, but still support arbitrary/future variants. Thanks @sunshowers! - PR#38 updated the built-in target list to
1.54.0, which notably includes the addition of the newwasmvariant totarget_family. Thanks @sunshowers!
Fixed
- PR#33 added clippy.toml with an
msrvso clippy lints are consistent across environments. Thanks @remilauzier!