-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Add patch number to version #13289
Milestone
Comments
Child bug of #11396 |
Accepted for 1.0, P-backcompat-libs. |
I can take this. |
The lack of the patch version is interfering with implementing #3795, due to the current version numbers not being accepted by Rust's semver implementation. It's a minor issue all things considered, but it would be nice to have it changed sooner rather than later. |
brson
added a commit
to brson/rust
that referenced
this issue
May 12, 2014
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
May 13, 2014
Closes rust-lang#14163 (Fix typos in rustc manpage) Closes rust-lang#14161 (Add the patch number to version strings. Closes rust-lang#13289) Closes rust-lang#14156 (rustdoc: Fix hiding implementations of traits) Closes rust-lang#14152 (add shebang to scripts that have execute bit set) Closes rust-lang#14150 (libcore: remove fails from slice.rs and remove duplicated length checking) Closes rust-lang#14147 (Make ProcessOutput Eq, TotalEq, Clone) Closes rust-lang#14142 (doc: updates rust manual (loop to continue)) Closes rust-lang#14141 (doc: Update the linkage documentation) Closes rust-lang#14139 (Remove an unnecessary .move_iter().collect()) Closes rust-lang#14136 (Two minor fixes in parser.rs) Closes rust-lang#14130 (Fixed typo in comments of driver.rs) Closes rust-lang#14128 (Add `stat` method to `std::io::fs::File` to stat without a Path.) Closes rust-lang#14114 (rustdoc: List macros in the sidebar) Closes rust-lang#14113 (shootout-nbody improvement) Closes rust-lang#14112 (Improved example code in Option) Closes rust-lang#14104 (Remove reference to MutexArc) Closes rust-lang#14087 (emacs: highlight `macro_name!` in macro invocations using [] delimiters)
matthiaskrgr
pushed a commit
to matthiaskrgr/rust
that referenced
this issue
Oct 11, 2022
… r=Veykril Use the sysroot proc-macro server for analysis-stats Should fix the metrics issues
Jarcho
pushed a commit
to Jarcho/rust
that referenced
this issue
Aug 24, 2024
fix typo in cfg_not_test lint description Found this typo while looking at Clippy lints changelog: none
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yet another issue that I am sure existed at one point but that GitHub will not help me find. Rust currently only uses
major.minor
version numbers, but semver calls formajor.minor.patch
. Nominating.The text was updated successfully, but these errors were encountered: