<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/test/rustdoc, branch 1.7.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.7.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.7.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2015-12-16T12:16:29+00:00</updated>
<entry>
<title>Rollup merge of #30372 - sanxiyn:rustdoc-cfg, r=alexcrichton</title>
<updated>2015-12-16T12:16:29+00:00</updated>
<author>
<name>Manish Goregaokar</name>
<email>manishsmail@gmail.com</email>
</author>
<published>2015-12-16T12:16:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=d91c34463731ffc4cb74229bc215967b076953be'/>
<id>urn:sha1:d91c34463731ffc4cb74229bc215967b076953be</id>
<content type='text'>
Fix #30252.
</content>
</entry>
<entry>
<title>Use --cfg when running doctests</title>
<updated>2015-12-15T09:03:55+00:00</updated>
<author>
<name>Seo Sanghyeon</name>
<email>sanxiyn@gmail.com</email>
</author>
<published>2015-12-15T09:03:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=eb2572106374ba39b5787cf2495782f4538a4c24'/>
<id>urn:sha1:eb2572106374ba39b5787cf2495782f4538a4c24</id>
<content type='text'>
Previously passed --cfg was used only when collecting doctests.
</content>
</entry>
<entry>
<title>Support `#[deprecated]` in rustdoc</title>
<updated>2015-12-12T20:01:27+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2015-12-12T20:01:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=67a978411a2009093bb40c4f1320a08d2a28b6c7'/>
<id>urn:sha1:67a978411a2009093bb40c4f1320a08d2a28b6c7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Auto merge of #30036 - mitaa:doc_id, r=alexcrichton</title>
<updated>2015-12-08T20:15:53+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2015-12-08T20:15:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=461c46052b86c330205b88fc0c02acae225588a8'/>
<id>urn:sha1:461c46052b86c330205b88fc0c02acae225588a8</id>
<content type='text'>
This expands the code which generates unique IDs for Markdown headers within a single block to each rendered page.

fixes #25001
fixes #29449
</content>
</entry>
<entry>
<title>std: Stabilize APIs for the 1.6 release</title>
<updated>2015-12-05T23:09:44+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-12-03T01:31:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=464cdff102993ff1900eebbf65209e0a3c0be0d5'/>
<id>urn:sha1:464cdff102993ff1900eebbf65209e0a3c0be0d5</id>
<content type='text'>
This commit is the standard API stabilization commit for the 1.6 release cycle.
The list of issues and APIs below have all been through their cycle-long FCP and
the libs team decisions are listed below

Stabilized APIs

* `Read::read_exact`
* `ErrorKind::UnexpectedEof` (renamed from `UnexpectedEOF`)
* libcore -- this was a bit of a nuanced stabilization, the crate itself is now
  marked as `#[stable]` and the methods appearing via traits for primitives like
  `char` and `str` are now also marked as stable. Note that the extension traits
  themeselves are marked as unstable as they're imported via the prelude. The
  `try!` macro was also moved from the standard library into libcore to have the
  same interface. Otherwise the functions all have copied stability from the
  standard library now.
* The `#![no_std]` attribute
* `fs::DirBuilder`
* `fs::DirBuilder::new`
* `fs::DirBuilder::recursive`
* `fs::DirBuilder::create`
* `os::unix::fs::DirBuilderExt`
* `os::unix::fs::DirBuilderExt::mode`
* `vec::Drain`
* `vec::Vec::drain`
* `string::Drain`
* `string::String::drain`
* `vec_deque::Drain`
* `vec_deque::VecDeque::drain`
* `collections::hash_map::Drain`
* `collections::hash_map::HashMap::drain`
* `collections::hash_set::Drain`
* `collections::hash_set::HashSet::drain`
* `collections::binary_heap::Drain`
* `collections::binary_heap::BinaryHeap::drain`
* `Vec::extend_from_slice` (renamed from `push_all`)
* `Mutex::get_mut`
* `Mutex::into_inner`
* `RwLock::get_mut`
* `RwLock::into_inner`
* `Iterator::min_by_key` (renamed from `min_by`)
* `Iterator::max_by_key` (renamed from `max_by`)

Deprecated APIs

* `ErrorKind::UnexpectedEOF` (renamed to `UnexpectedEof`)
* `OsString::from_bytes`
* `OsStr::to_cstring`
* `OsStr::to_bytes`
* `fs::walk_dir` and `fs::WalkDir`
* `path::Components::peek`
* `slice::bytes::MutableByteVector`
* `slice::bytes::copy_memory`
* `Vec::push_all` (renamed to `extend_from_slice`)
* `Duration::span`
* `IpAddr`
* `SocketAddr::ip`
* `Read::tee`
* `io::Tee`
* `Write::broadcast`
* `io::Broadcast`
* `Iterator::min_by` (renamed to `min_by_key`)
* `Iterator::max_by` (renamed to `max_by_key`)
* `net::lookup_addr`

New APIs (still unstable)

* `&lt;[T]&gt;::sort_by_key` (added to mirror `min_by_key`)

Closes #27585
Closes #27704
Closes #27707
Closes #27710
Closes #27711
Closes #27727
Closes #27740
Closes #27744
Closes #27799
Closes #27801
cc #27801 (doesn't close as `Chars` is still unstable)
Closes #28968
</content>
</entry>
<entry>
<title>Add tests</title>
<updated>2015-12-05T22:11:07+00:00</updated>
<author>
<name>mitaa</name>
<email>mitaa.ceb@gmail.com</email>
</author>
<published>2015-12-05T22:09:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=fb7008c0a08264f42d44f010786edf15492c9bce'/>
<id>urn:sha1:fb7008c0a08264f42d44f010786edf15492c9bce</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use the extern item-path for documentation links</title>
<updated>2015-12-03T22:11:19+00:00</updated>
<author>
<name>mitaa</name>
<email>mitaa.ceb@gmail.com</email>
</author>
<published>2015-12-03T22:11:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=af1ad419e154b5306c7d89b21218fe35607e9f3a'/>
<id>urn:sha1:af1ad419e154b5306c7d89b21218fe35607e9f3a</id>
<content type='text'>
The local item-path includes the local crates path to the extern crate
declaration which breaks cross-crate rustdoc links if the extern crate
is not linked into the crate root or renamed via `extern foo as bar`.
</content>
</entry>
<entry>
<title>Auto merge of #30074 - jonas-schievink:macro-doc, r=sanxiyn</title>
<updated>2015-11-28T16:22:27+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2015-11-28T16:22:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=5ea65c03d96875a41c556ccd949617d4830e0ee9'/>
<id>urn:sha1:5ea65c03d96875a41c556ccd949617d4830e0ee9</id>
<content type='text'>
Fixes #17616

New docs for `panic!`:
```rust
macro_rules! panic {
    () =&gt; { ... };
    ($msg:expr) =&gt; { ... };
    ($fmt:expr, $($arg:tt)+) =&gt; { ... };
}
```

New docs for `assert!`:
```rust
macro_rules! assert {
    ( $ cond : expr ) =&gt; { ... };
    (
$ cond : expr , $ ( $ arg : tt ) + ) =&gt; { ... };
}
```
&lt;sup&gt;not pretty, but at least it's not worse :joy:
</content>
</entry>
<entry>
<title>Add a test</title>
<updated>2015-11-28T13:47:12+00:00</updated>
<author>
<name>Jonas Schievink</name>
<email>jonas@schievink.net</email>
</author>
<published>2015-11-28T13:47:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ff339bd6f906754bbb6e2e249322a5bc79433329'/>
<id>urn:sha1:ff339bd6f906754bbb6e2e249322a5bc79433329</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove all uses of `#[staged_api]`</title>
<updated>2015-11-25T18:55:26+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2015-11-23T22:52:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=be8ace8cacddcb59d7fb982dd0e0eab81290ea0b'/>
<id>urn:sha1:be8ace8cacddcb59d7fb982dd0e0eab81290ea0b</id>
<content type='text'>
</content>
</entry>
</feed>
