Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Latest commit

 

History

History
92 lines (45 loc) · 4.49 KB

CHANGELOG.md

File metadata and controls

92 lines (45 loc) · 4.49 KB

Changelog

0.10.0 (2024-04-09)

Features

0.9.3 (2024-04-09)

Miscellaneous Chores

0.9.2 (2023-10-10)

Features

  • Deprecated CommandV1 and several unused Package fields (331831e)

Bug Fixes

  • Serializing a wasmer_toml::Package won't include the private flag unless it is true (1791623)

0.9.1 (2023-10-09)

Features

  • Packages can be marked as private by setting private = true under [package] (6eb00dc)

0.9.0 (2023-09-29)

⚠ BREAKING CHANGES

  • Upgraded public dependencies

Miscellaneous Chores

  • Upgraded public dependencies (2749624)

0.8.1 (2023-09-29)

Bug Fixes

  • Public dependencies that aren't 1.0 yet are now re-exported using pub extern crate (f320204)

0.8.0 (2023-09-19)

⚠ BREAKING CHANGES

  • Removed some unnecessary command getters and switched others from returning owned copies to returning references

Features

  • Commands can now use modules from other dependencies with the module = "my/dependency:module" syntax (88b784d)
  • Removed some unnecessary command getters and switched others from returning owned copies to returning references (88b784d)

Miscellaneous Chores

0.7.0 (2023-07-20)

⚠ BREAKING CHANGES

  • Manifest and Package are now #[non_exhaustive] and configurable via a builder API
  • made ManifestError and ValidationError more strongly typed and descriptive
  • Removed unnecessary Option wrappers from the Manifest type

Features

  • Added an "entrypoint" field to the "[package]" table (fixes #15) (d6bce6b)
  • Added validation for duplicate commands and modules (26f8f84)
  • Added validation to check that the entrypoint is valid (b9b677c)
  • made ManifestError and ValidationError more strongly typed and descriptive (75040b8)
  • Manifest and Package are now #[non_exhaustive] and configurable via a builder API (2b99e5c)
  • Removed unnecessary Option wrappers from the Manifest type (5307784)

Miscellaneous Chores