Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Semver rule 4 specifies that 0.x.z, anything may change at anytime #4145

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions nostarch/chapter02.md
Original file line number Diff line number Diff line change
Expand Up @@ -386,9 +386,8 @@ The specifier `0.8.5` is actually shorthand for `^0.8.5`, which means any
version that is at least 0.8.5 but below 0.9.0.

Cargo considers these versions to have public APIs compatible with version
0.8.5, and this specification ensures you’ll get the latest patch release that
will still compile with the code in this chapter. Any version 0.9.0 or greater
is not guaranteed to have the same API as what the following examples use.
0.8.5. Any version 0.9.0 or greater is not guaranteed to have the same API
as what the following examples use.

Now, without changing any of the code, let’s build the project, as shown in
Listing 2-2.
Expand Down
Loading