v0.24.0
·
1565 commits
to master
since this release
0.24.0 "Xenotime" (2023-08-10)
Features
-
Added support for project manifests and project dependencies.
Example:
my_project ├── fe.toml └── src └── main.fe# fe.toml name = "my_project" version = "1.0" [dependencies] my_lib = { path = "../path/to/my_lib", version = "1.0" } my_other_lib = "../path/to/my_other_lib"Note: The current implementation supports circular dependencies. (#908)
Performance improvements
MemoryBuffernow allocates an extra 31 bytes. This removes the need for runtime checks and bitshifting needed to ensure safe writing to aMemoryBuffer's region. (#898)
Improved Documentation
- Link to vs-code extension in Quickstart Guide (#910)