Skip to content

Commit c099ba0

Browse files
committed
---
yaml --- r: 63803 b: refs/heads/snap-stage3 c: ea62fd1 h: refs/heads/master i: 63801: 5990c69 63799: 35e9239 v: v3
1 parent ea9d88b commit c099ba0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+1107
-2178
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 3fbea161075aa21a217bd794e3f5cac7085e94ec
4+
refs/heads/snap-stage3: ea62fd1090fda26e1e4b68bdc7ef2e11864d80b6
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ endif
139139

140140
# version-string calculation
141141
CFG_GIT_DIR := $(CFG_SRC_DIR).git
142-
CFG_RELEASE = 0.7-pre
142+
CFG_RELEASE = 0.6
143143
CFG_VERSION = $(CFG_RELEASE)
144144

145145
ifneq ($(wildcard $(CFG_GIT)),)

branches/snap-stage3/RELEASES.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ Version 0.7 (July 2013)
101101
dynamic borrowcheck failures for debugging.
102102
* rustdoc has a nicer stylesheet.
103103
* Various improvements to rustdoc.
104-
* Improvements to rustpkg (see the detailed release notes)
105104

106105
* Other
107106
* More and improved library documentation.

branches/snap-stage3/doc/rust.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2620,7 +2620,7 @@ assert!(b != "world");
26202620

26212621
The vector type constructor represents a homogeneous array of values of a given type.
26222622
A vector has a fixed size.
2623-
(Operations like `vec.push` operate solely on owned vectors.)
2623+
(Operations like `vec::push` operate solely on owned vectors.)
26242624
A vector type can be annotated with a _definite_ size,
26252625
written with a trailing asterisk and integer literal, such as `[int * 10]`.
26262626
Such a definite-sized vector type is a first-class type, since its size is known statically.

branches/snap-stage3/doc/rustpkg.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -95,22 +95,12 @@ When building a package that is in a `git` repository,
9595
When building a package that is not under version control,
9696
or that has no tags, `rustpkg` assumes the intended version is 0.1.
9797

98-
# Dependencies
99-
100-
rustpkg infers dependencies from `extern mod` directives.
101-
Thus, there should be no need to pass a `-L` flag to rustpkg to tell it where to find a library.
102-
(In the future, it will also be possible to write an `extern mod` directive referring to a remote package.)
103-
10498
# Custom build scripts
10599

106100
A file called `pkg.rs` at the root level in a workspace is called a *package script*.
107101
If a package script exists, rustpkg executes it to build the package
108102
rather than inferring crates as described previously.
109103

110-
Inside `pkg.rs`, it's possible to call back into rustpkg to finish up the build.
111-
`rustpkg::api` contains functions to build, install, or clean libraries and executables
112-
in the way rustpkg normally would without custom build logic.
113-
114104
# Command reference
115105

116106
## build

branches/snap-stage3/doc/tutorial-container.md

Lines changed: 0 additions & 207 deletions
This file was deleted.

0 commit comments

Comments
 (0)