<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libnum/integer.rs, branch try</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=try</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=try'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2014-10-19T19:59:40+00:00</updated>
<entry>
<title>Remove a number of deprecated crates</title>
<updated>2014-10-19T19:59:40+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2014-10-15T04:57:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=fb169d5543c84e11038ba2d07b538ec88fb49ca6'/>
<id>urn:sha1:fb169d5543c84e11038ba2d07b538ec88fb49ca6</id>
<content type='text'>
All of these crates have been deprecated for some time and properly live in the
rust-lang organization as cargo-based crates.

To update your code, depend on the rust-lang/foo repository via cargo.

[breaking-change]
</content>
</entry>
<entry>
<title>Clean up rustc warnings.</title>
<updated>2014-10-13T06:16:22+00:00</updated>
<author>
<name>NODA, Kai</name>
<email>nodakai@gmail.com</email>
</author>
<published>2014-10-05T10:11:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f27ad3d3e99ce679f782607971a9f6f18befa503'/>
<id>urn:sha1:f27ad3d3e99ce679f782607971a9f6f18befa503</id>
<content type='text'>
compiletest: compact "linux" "macos" etc.as "unix".
liballoc: remove a superfluous "use".
libcollections: remove invocations of deprecated methods in favor of
    their suggested replacements and use "_" for a loop counter.
libcoretest: remove invocations of deprecated methods;  also add
    "allow(deprecated)" for testing a deprecated method itself.
libglob: use "cfg_attr".
libgraphviz: add a test for one of data constructors.
libgreen: remove a superfluous "use".
libnum: "allow(type_overflow)" for type cast into u8 in a test code.
librustc: names of static variables should be in upper case.
libserialize: v[i] instead of get().
libstd/ascii: to_lowercase() instead of to_lower().
libstd/bitflags: modify AnotherSetOfFlags to use i8 as its backend.
    It will serve better for testing various aspects of bitflags!.
libstd/collections: "allow(deprecated)" for testing a deprecated
    method itself.
libstd/io: remove invocations of deprecated methods and superfluous "use".
    Also add #[test] where it was missing.
libstd/num: introduce a helper function to effectively remove
    invocations of a deprecated method.
libstd/path and rand: remove invocations of deprecated methods and
    superfluous "use".
libstd/task and libsync/comm: "allow(deprecated)" for testing
    a deprecated method itself.
libsync/deque: remove superfluous "unsafe".
libsync/mutex and once: names of static variables should be in upper case.
libterm: introduce a helper function to effectively remove
    invocations of a deprecated method.

We still see a few warnings about using obsoleted native::task::spawn()
in the test modules for libsync.  I'm not sure how I should replace them
with std::task::TaksBuilder and native::task::NativeTaskBuilder
(dependency to libstd?)

Signed-off-by: NODA, Kai &lt;nodakai@gmail.com&gt;
</content>
</entry>
<entry>
<title>Fix deprecation warnings in check-docs.</title>
<updated>2014-09-22T17:31:31+00:00</updated>
<author>
<name>Victor Berger</name>
<email>victor.berger@m4x.org</email>
</author>
<published>2014-09-22T17:31:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=d845857fd915a2044f74711db3b7e71146b35200'/>
<id>urn:sha1:d845857fd915a2044f74711db3b7e71146b35200</id>
<content type='text'>
Fallout of closing #17185.
</content>
</entry>
<entry>
<title>doc: Cleanup.</title>
<updated>2014-09-17T09:28:22+00:00</updated>
<author>
<name>Jonas Hietala</name>
<email>tradet.h@gmail.com</email>
</author>
<published>2014-09-16T11:27:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=9b49ad238db64f66d66a1a6e9c26198abe56cc53'/>
<id>urn:sha1:9b49ad238db64f66d66a1a6e9c26198abe56cc53</id>
<content type='text'>
Remove ~~~ for code block specification. Use /// Over /** */ for doc
blocks.
</content>
</entry>
<entry>
<title>Rename Integer trait `divides` to `is_multiple_of`.</title>
<updated>2014-07-29T22:43:52+00:00</updated>
<author>
<name>Jonas Hietala</name>
<email>tradet.h@gmail.com</email>
</author>
<published>2014-07-28T14:03:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=59a91280084347ced9a27c8d05a211f50fe90737'/>
<id>urn:sha1:59a91280084347ced9a27c8d05a211f50fe90737</id>
<content type='text'>
It is being changed because the previous wording was ambiguous.
`a.divides(b)` implied `a % b == 0` but it sounds like the other way
around. `9.divides(&amp;3) == true` but we might read that as
"does 9 divide 3?".  It has been renamed to sidestep the ambiguity.

Work around the change by using `is_multiple_of` instead.

[breaking-change]
</content>
</entry>
<entry>
<title>Examples for Integer trait methods.</title>
<updated>2014-07-16T14:17:57+00:00</updated>
<author>
<name>Jonas Hietala</name>
<email>tradet.h@gmail.com</email>
</author>
<published>2014-07-16T14:17:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=5f843eea223ce952bbdfbb89d3cead40f88f6dd5'/>
<id>urn:sha1:5f843eea223ce952bbdfbb89d3cead40f88f6dd5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Moved integer trait and functions to submodule</title>
<updated>2014-06-09T14:36:40+00:00</updated>
<author>
<name>Adolfo Ochagavía</name>
<email>aochagavia92@gmail.com</email>
</author>
<published>2014-06-05T19:07:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3ca00ec0db8875e97fbe88990722dd9378f51b11'/>
<id>urn:sha1:3ca00ec0db8875e97fbe88990722dd9378f51b11</id>
<content type='text'>
</content>
</entry>
</feed>
