Skip to content

Commit

Permalink
Semver rule 4 specifies that 0.x.z, anything may change at anytime
Browse files Browse the repository at this point in the history
  • Loading branch information
r-slabs committed Dec 7, 2024
1 parent 397d181 commit f3b1383
Showing 1 changed file with 2 additions and 3 deletions.
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

0 comments on commit f3b1383

Please sign in to comment.