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

Rolling up PRs in the queue #27688

Merged
merged 45 commits into from
Aug 12, 2015
Merged
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
1eeaf20
Fix ICE when trying to drop an unsized type from a different crate
dotdash Aug 7, 2015
f804872
Fix the function return type used in get_res_dtor()
dotdash Aug 8, 2015
d83a0fd
add diagnostics for E0387
AlisdairO Aug 8, 2015
bbbfed2
Use https URLs to refer to rust-lang.org where appropriate.
eefriedman Aug 9, 2015
7d3c4bd
Tweak style guide to avoid referencing the removed ascii::Ascii.
eefriedman Aug 10, 2015
5bcbc5c
Bug #27621 - Make sure that LLVM FileCheck is available on the system
sylvestre Aug 10, 2015
3479915
Add another example for E0425
GuillaumeGomez Aug 10, 2015
86191e2
Fixed algorithm to match shootout requirements
llogiq Aug 10, 2015
78d2833
add info about cell types to diagnostic message E0387
AlisdairO Aug 10, 2015
f041966
fix import nit for long diagnostics on E0387
AlisdairO Aug 10, 2015
689d13d
Make the backtrace-debuginfo test less error prone
dotdash Aug 10, 2015
b7a88d8
Updated the link with rendered version of the Spanish trpl translation.
Aug 11, 2015
fef60c0
add long diagnostics for E0194
AlisdairO Aug 10, 2015
0354d7a
Remove unneeded FIXME
tbu- Aug 11, 2015
29945d5
syntax: fix use of "vector" for [x; n] literal and [x, y] patterns
birkenfeld Aug 11, 2015
f1e613e
Update E0425 error explanation
GuillaumeGomez Aug 11, 2015
3acec57
Fix formatting for E0067 and E0070 error messages
frewsxcv Aug 11, 2015
cb5cd54
Fix copy-paste bug.
vadimcn Aug 11, 2015
155689b
Use correct target CPU for iOS simulator.
eefriedman Aug 11, 2015
8f4aee8
std: Fix imports for ios target
zaeleus Aug 11, 2015
938099a
Register new snapshots
alexcrichton Aug 11, 2015
b6b4f5a
trans: Re-enable unwinding on 64-bit MSVC
alexcrichton Aug 11, 2015
27c44c8
correct copy/paste typos in stdio.rs comments
durka Aug 12, 2015
d73d22b
Update version number response for new version of rust
Aug 12, 2015
93bb57e
rollup merge of #27605: AlisdairO/diagnostics387
alexcrichton Aug 12, 2015
a0d5181
rollup merge of #27615: GuillaumeGomez/send_sync
alexcrichton Aug 12, 2015
e132f76
rollup merge of #27618: dotdash/drop_fixes
alexcrichton Aug 12, 2015
737397c
rollup merge of #27622: eefriedman/https-url
alexcrichton Aug 12, 2015
e837258
rollup merge of #27630: sylvestre/master
alexcrichton Aug 12, 2015
726c9f2
rollup merge of #27635: GuillaumeGomez/patch-4
alexcrichton Aug 12, 2015
4c728f8
rollup merge of #27636: llogiq/patch-1
alexcrichton Aug 12, 2015
b5b8f1b
rollup merge of #27644: AlisdairO/diagnostics194
alexcrichton Aug 12, 2015
29eae0e
rollup merge of #27650: dotdash/backtrace_test
alexcrichton Aug 12, 2015
1757837
rollup merge of #27659: goyox86/goyox86/update-spanish-book-link
alexcrichton Aug 12, 2015
2abc936
rollup merge of #27663: tbu-/pr_remove_fixme
alexcrichton Aug 12, 2015
8267ff7
rollup merge of #27664: birkenfeld/patch-1
alexcrichton Aug 12, 2015
d2552fa
rollup merge of #27665: frewsxcv/patch-25
alexcrichton Aug 12, 2015
d493659
rollup merge of #27666: vadimcn/cabi-typo
alexcrichton Aug 12, 2015
d4f2ef9
rollup merge of #27672: eefriedman/ios-target-cpu
alexcrichton Aug 12, 2015
00ac2c0
rollup merge of #27674: zaeleus/ios-imports
alexcrichton Aug 12, 2015
bbef889
rollup merge of #27676: alexcrichton/msvc-unwind
alexcrichton Aug 12, 2015
837ae4f
rollup merge of #27678: alexcrichton/snapshots
alexcrichton Aug 12, 2015
db3f063
rollup merge of #27679: durka/patch-5
alexcrichton Aug 12, 2015
fe3ab21
rollup merge of #27682: neurons/np.27681
alexcrichton Aug 12, 2015
6b09eb8
Test fixes and rebase conflicts
alexcrichton Aug 12, 2015
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
Prev Previous commit
Next Next commit
Update version number response for new version of rust
  • Loading branch information
Niranjan Padmanabhan committed Aug 12, 2015
commit d73d22b8cc1003b3cdadb3e8f767a03c835bf845
4 changes: 2 additions & 2 deletions src/doc/trpl/installing-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ $ rustc --version
```

You should see the version number, commit hash, and commit date. If you just
installed version 1.0.0, you should see:
installed version 1.2.0, you should see:

```bash
rustc 1.0.0 (a59de37e9 2015-05-13)
rustc 1.2.0 (082e47636 2015-08-03)
```

If you did, Rust has been installed successfully! Congrats!
Expand Down