Skip to content

Commit 243e3d5

Browse files
committed
Bump version to 1.15.0
And fix nursery links
1 parent c26f4fc commit 243e3d5

File tree

11 files changed

+290
-290
lines changed

11 files changed

+290
-290
lines changed

CHANGELOG.md

Lines changed: 253 additions & 253 deletions
Large diffs are not rendered by default.

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22

33
name = "rustup"
4-
version = "1.14.0"
4+
version = "1.15.0"
55
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
66
description = "Manage multiple rust installations with ease"
77

8-
documentation = "http://rust-lang-nursery.github.io/rustup.rs/rustup/index.html"
9-
homepage = "https://github.com/rust-lang-nursery/rustup.rs"
10-
repository = "https://github.com/rust-lang-nursery/rustup.rs"
8+
documentation = "http://rust-lang.github.io/rustup.rs/rustup/index.html"
9+
homepage = "https://github.com/rust-lang/rustup.rs"
10+
repository = "https://github.com/rust-lang/rustup.rs"
1111

1212
readme = "README.md"
1313

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ variable.
665665
work][s]. `rustup` performs all downloads over HTTPS, but does not
666666
yet validate signatures of downloads.
667667

668-
[s]: https://github.com/rust-lang-nursery/rustup.rs/issues?q=is%3Aopen+is%3Aissue+label%3Asecurity
668+
[s]: https://github.com/rust-lang/rustup.rs/issues?q=is%3Aopen+is%3Aissue+label%3Asecurity
669669

670670
## FAQ
671671

@@ -734,7 +734,7 @@ Apache-2.0 license, shall be dual licensed as above, without any
734734
additional terms or conditions.
735735

736736
<!-- Badges -->
737-
[travis-build-status]: https://travis-ci.org/rust-lang-nursery/rustup.rs
738-
[travis-build-status-svg]: https://img.shields.io/travis/rust-lang-nursery/rustup.rs.svg
739-
[appveyor-build-status]: https://ci.appveyor.com/project/rust-lang-libs/rustup-rs
737+
[travis-build-status]: https://travis-ci.org/rust-lang/rustup.rs
738+
[travis-build-status-svg]: https://img.shields.io/travis/rust-lang/rustup.rs.svg
739+
[appveyor-build-status]: https://ci.appveyor.com/project/rust-lang/rustup-rs
740740
[appveyor-build-status-svg]: https://ci.appveyor.com/api/projects/status/ob64fa46mp25wp35?svg=true

ci/build-run-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ docker run \
3131
-c 'PATH=$PATH:/travis-rust/bin exec bash ci/run.sh'
3232

3333
# check that rustup-init was built with ssl support
34-
# see https://github.com/rust-lang-nursery/rustup.rs/issues/1051
34+
# see https://github.com/rust-lang/rustup.rs/issues/1051
3535
if ! (nm target/$TARGET/release/rustup-init | grep Curl_ssl_version &> /dev/null); then
3636
echo "Missing ssl support!!!!" >&2
3737
exit 1

rustup-init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ get_architecture() {
308308

309309
# Detect armv7 but without the CPU features Rust needs in that build,
310310
# and fall back to arm.
311-
# See https://github.com/rust-lang-nursery/rustup.rs/issues/587.
311+
# See https://github.com/rust-lang/rustup.rs/issues/587.
312312
if [ $_ostype = "unknown-linux-gnueabihf" -a $_cputype = armv7 ]; then
313313
if ensure grep '^Features' /proc/cpuinfo | grep -q -v neon; then
314314
# At least one processor does not have NEON.

src/rustup-dist/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22

33
name = "rustup-dist"
4-
version = "1.14.0"
4+
version = "1.15.0"
55
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
66
description = "Installation from a Rust distribution server"
77
build = "build.rs"
88

9-
documentation = "http://rust-lang-nursery.github.io/rustup.rs/rustup_dist/index.html"
10-
homepage = "https://github.com/rust-lang-nursery/rustup.rs"
11-
repository = "https://github.com/rust-lang-nursery/rustup.rs"
9+
documentation = "http://rust-lang.github.io/rustup.rs/rustup_dist/index.html"
10+
homepage = "https://github.com/rust-lang/rustup.rs"
11+
repository = "https://github.com/rust-lang/rustup.rs"
1212

1313
license = "MIT OR Apache-2.0"
1414

src/rustup-mock/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22

33
name = "rustup-mock"
4-
version = "1.14.0"
4+
version = "1.15.0"
55
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
66
description = "Test mocks for rustup"
77

8-
documentation = "http://rust-lang-nursery.github.io/rustup.rs/rustup_mock/index.html"
9-
homepage = "https://github.com/rust-lang-nursery/rustup.rs"
10-
repository = "https://github.com/rust-lang-nursery/rustup.rs"
8+
documentation = "http://rust-lang.github.io/rustup.rs/rustup_mock/index.html"
9+
homepage = "https://github.com/rust-lang/rustup.rs"
10+
repository = "https://github.com/rust-lang/rustup.rs"
1111

1212
[dependencies]
1313
url = "1.1.0"

src/rustup-utils/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22

33
name = "rustup-utils"
4-
version = "1.14.0"
4+
version = "1.15.0"
55
authors = [ "Diggory Blake <diggsey@googlemail.com>" ]
66
description = "Utility functions for rustup"
77

8-
documentation = "http://rust-lang-nursery.github.io/rustup.rs/rustup_utils/index.html"
9-
homepage = "https://github.com/rust-lang-nursery/rustup.rs"
10-
repository = "https://github.com/rust-lang-nursery/rustup.rs"
8+
documentation = "http://rust-lang.github.io/rustup.rs/rustup_utils/index.html"
9+
homepage = "https://github.com/rust-lang/rustup.rs"
10+
repository = "https://github.com/rust-lang/rustup.rs"
1111

1212
license = "MIT OR Apache-2.0"
1313

src/rustup-win-installer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustup-win-installer"
3-
version = "1.14.0"
3+
version = "1.15.0"
44
authors = ["Patrick Reisert"]
55
build = "build.rs"
66

0 commit comments

Comments
 (0)