Skip to content

Version 1.0

No due date 90% complete

Milestone for releasing v1 on crates.io

The goal of this release is API stabilization and providing a production worthy set of features (no major flaws).

This means the goal is not: full feature completeness, docs, spec compliance, edge case bugs fixes, performance and internal code organization. This can be addressed within the 1.* versions without break…

Milestone for releasing v1 on crates.io

The goal of this release is API stabilization and providing a production worthy set of features (no major flaws).

This means the goal is not: full feature completeness, docs, spec compliance, edge case bugs fixes, performance and internal code organization. This can be addressed within the 1.* versions without breaking changes.

As a reminder, non breaking changes are:

  • adding new structs, functions, traits, types
  • adding new methods to structs
  • adding new non-public fields to structs
  • adding methods to traits with a default implementation

Breaking changes are:

  • removing/renaming structs, functions, traits, types
  • adding new public fields to structs
  • changing function/method signatures
  • adding methods to traits w/o a default implementation