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

Rollup of 5 pull requests #41458

Closed
wants to merge 21 commits into from
Closed

Rollup of 5 pull requests #41458

wants to merge 21 commits into from

Commits on Apr 20, 2017

  1. Configuration menu
    Copy the full SHA
    a654610 View commit details
    Browse the repository at this point in the history
  2. Don't panic if an attribute macro fails to resolve at crate root

    Adds temporary regression test; this ideally should work as-is (rust-lang#41430)
    
    Closes rust-lang#41211
    abonander committed Apr 20, 2017
    Configuration menu
    Copy the full SHA
    910532e View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2017

  1. Add test for issue 33884

    estebank committed Apr 21, 2017
    Configuration menu
    Copy the full SHA
    903bdfc View commit details
    Browse the repository at this point in the history
  2. Remove EnumSet

    [unstable, deprecated since 1.16.0]
    cuviper committed Apr 21, 2017
    Configuration menu
    Copy the full SHA
    a76274e View commit details
    Browse the repository at this point in the history
  3. Remove BinaryHeap::{push_pop,replace}

    [unstable, deprecated since 1.13.0]
    cuviper committed Apr 21, 2017
    Configuration menu
    Copy the full SHA
    a724ff9 View commit details
    Browse the repository at this point in the history
  4. Remove OccupiedEntry::remove_pair

    [unstable, deprecated since 1.12.0]
    cuviper committed Apr 21, 2017
    Configuration menu
    Copy the full SHA
    df86cec View commit details
    Browse the repository at this point in the history
  5. Remove Rc::would_wrap

    [unstable, deprecated since 1.15.0]
    cuviper committed Apr 21, 2017
    Configuration menu
    Copy the full SHA
    f4aaae9 View commit details
    Browse the repository at this point in the history
  6. Privatize Rc::is_unique

    [unstable, deprecated since 1.15.0]
    cuviper committed Apr 21, 2017
    Configuration menu
    Copy the full SHA
    f0c5e8b View commit details
    Browse the repository at this point in the history
  7. Remove {Cell,RefCell}::as_unsafe_cell

    [unstable, deprecated since 1.12.0]
    cuviper committed Apr 21, 2017
    Configuration menu
    Copy the full SHA
    cc605c8 View commit details
    Browse the repository at this point in the history
  8. Remove RefCell::borrow_state

    [unstable, deprecated since 1.15.0]
    cuviper committed Apr 21, 2017
    Configuration menu
    Copy the full SHA
    313aab8 View commit details
    Browse the repository at this point in the history
  9. Remove num::{Zero,One}

    [unstable, deprecated since 1.11.0]
    cuviper committed Apr 21, 2017
    Configuration menu
    Copy the full SHA
    c903ac6 View commit details
    Browse the repository at this point in the history
  10. Remove float_extras

    [unstable, deprecated since 1.11.0]
    cuviper committed Apr 21, 2017
    Configuration menu
    Copy the full SHA
    c1aaa60 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    d360091 View commit details
    Browse the repository at this point in the history
  12. Update tests

    GuillaumeGomez committed Apr 21, 2017
    Configuration menu
    Copy the full SHA
    8fe3a9a View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    7d3284e View commit details
    Browse the repository at this point in the history
  14. Update ui test

    GuillaumeGomez committed Apr 21, 2017
    Configuration menu
    Copy the full SHA
    7ce1eb7 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2017

  1. Rollup merge of rust-lang#37658 - GuillaumeGomez:ref_suggestion, r=ni…

    …komatsakis,eddyb
    
    Ref suggestion
    frewsxcv authored Apr 22, 2017
    Configuration menu
    Copy the full SHA
    e7bf524 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#41405 - GuillaumeGomez:rustdoc-warning-impr…

    …ovement, r=steveklabnik
    
    Fix line display for hoedown
    
    Fixes rust-lang#41401.
    
    r? @rust-lang/docs
    frewsxcv authored Apr 22, 2017
    Configuration menu
    Copy the full SHA
    47c68ec View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#41432 - abonander:issue_41211, r=jseyfried

    Don't panic if an attribute macro fails to resolve at crate root
    
    Adds temporary regression test; this ideally should work as-is (rust-lang#41430)
    
    Closes rust-lang#41211
    
    r? @jseyfried
    frewsxcv authored Apr 22, 2017
    Configuration menu
    Copy the full SHA
    9283402 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#41435 - estebank:issue-33884, r=nikomatsakis

    Add test for issue 33884
    
    Fix rust-lang#33884.
    
    r=nikomatsakis
    frewsxcv authored Apr 22, 2017
    Configuration menu
    Copy the full SHA
    7ac821d View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#41437 - cuviper:remove-unstable-deprecated,…

    … r=alexcrichton
    
    Remove items that are unstable and deprecated
    
    This removes unstable items that have been deprecated for more than one cycle.
    
    - Since 1.16.0, `#![feature(enumset)]`
        - All of `mod collections::enum_set`
    - Since 1.15.0, `#![feature(borrow_state)]`
        - `cell::BorrowState`
        - `RefCell::borrow_state()`
    - Since 1.15.0, `#![feature(is_unique)]`
        - `Rc::is_unique()` (made private like `Arc::is_unique()`)
    - Since 1.15.0, `#![feature(rc_would_unwrap)]`
        - `Rc::would_wrap()`
    - Since 1.13.0, `#![feature(binary_heap_extras)]`
        - `BinaryHeap::push_pop()`
        - `BinaryHeap::replace()`
    - Since 1.12.0, `#![feature(as_unsafe_cell)]`
        - `Cell::as_unsafe_cell()`
        - `RefCell::as_unsafe_cell()`
    - Since 1.12.0, `#![feature(map_entry_recover_keys)]`
        - `btree_map::OccupiedEntry::remove_pair()`
        - `hash_map::OccupiedEntry::remove_pair()`
    - Since 1.11.0, `#![feature(float_extras)]`
        - `Float::nan()`
        - `Float::infinity()`
        - `Float::neg_infinity()`
        - `Float::neg_zero()`
        - `Float::zero()`
        - `Float::one()`
        - `Float::integer_decode()`
        - `f32::integer_decode()`
        - `f32::ldexp()`
        - `f32::frexp()`
        - `f32::next_after()`
        - `f64::integer_decode()`
        - `f64::ldexp()`
        - `f64::frexp()`
        - `f64::next_after()`
    - Since 1.11.0, `#![feature(zero_one)]`
        - `num::Zero`
        - `num::One`
    frewsxcv authored Apr 22, 2017
    Configuration menu
    Copy the full SHA
    eb9ce36 View commit details
    Browse the repository at this point in the history