Skip to content

Commit 29f10da

Browse files
committed
---
yaml --- r: 223163 b: refs/heads/auto c: a98fd11 h: refs/heads/master i: 223161: 4976113 223159: 6129ce1 v: v3
1 parent fff2d54 commit 29f10da

File tree

297 files changed

+1601
-2956
lines changed

Some content is hidden

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

297 files changed

+1601
-2956
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
88
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
99
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1010
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
11-
refs/heads/auto: 6210dcdddb7d7dab3f8fd0e9016b119f82408324
11+
refs/heads/auto: a98fd112281a2e5681a8023b421a52e98ea39eb5
1212
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1313
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
1414
refs/tags/0.2: 1754d02027f2924bed83b0160ee340c7f41d5ea1

branches/auto/.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ sudo: false
2020
before_script:
2121
- ./configure --enable-ccache
2222
script:
23-
- make tidy check -j4
23+
- make tidy
24+
- make rustc-stage1 -j4
2425

2526
env:
2627
- CXX=/usr/bin/g++-4.7

branches/auto/RELEASES.md

Lines changed: 1 addition & 1 deletion

branches/auto/mk/docs.mk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ ERR_IDX_GEN = $(RPATH_VAR2_T_$(CFG_BUILD)_H_$(CFG_BUILD)) $(ERR_IDX_GEN_EXE)
7777

7878
D := $(S)src/doc
7979

80-
DOC_TARGETS := trpl nomicon style error-index
80+
DOC_TARGETS := trpl tarpl style error-index
8181
COMPILER_DOC_TARGETS :=
8282
DOC_L10N_TARGETS :=
8383

@@ -287,12 +287,12 @@ doc/book/index.html: $(RUSTBOOK_EXE) $(wildcard $(S)/src/doc/trpl/*.md) | doc/
287287
$(Q)rm -rf doc/book
288288
$(Q)$(RUSTBOOK) build $(S)src/doc/trpl doc/book
289289

290-
nomicon: doc/nomicon/index.html
290+
tarpl: doc/adv-book/index.html
291291

292-
doc/nomicon/index.html: $(RUSTBOOK_EXE) $(wildcard $(S)/src/doc/nomicon/*.md) | doc/
292+
doc/adv-book/index.html: $(RUSTBOOK_EXE) $(wildcard $(S)/src/doc/tarpl/*.md) | doc/
293293
@$(call E, rustbook: $@)
294-
$(Q)rm -rf doc/nomicon
295-
$(Q)$(RUSTBOOK) build $(S)src/doc/nomicon doc/nomicon
294+
$(Q)rm -rf doc/adv-book
295+
$(Q)$(RUSTBOOK) build $(S)src/doc/tarpl doc/adv-book
296296

297297
style: doc/style/index.html
298298

branches/auto/mk/main.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
######################################################################
1414

1515
# The version number
16-
CFG_RELEASE_NUM=1.4.0
16+
CFG_RELEASE_NUM=1.3.0
1717

1818
# An optional number to put after the label, e.g. '.2' -> '-beta.2'
1919
# NB Make sure it starts with a dot to conform to semver pre-release

branches/auto/mk/tests.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ $(foreach doc,$(DOCS), \
162162
$(eval $(call DOCTEST,md-$(doc),$(S)src/doc/$(doc).md)))
163163
$(foreach file,$(wildcard $(S)src/doc/trpl/*.md), \
164164
$(eval $(call DOCTEST,$(file:$(S)src/doc/trpl/%.md=trpl-%),$(file))))
165-
$(foreach file,$(wildcard $(S)src/doc/nomicon/*.md), \
166-
$(eval $(call DOCTEST,$(file:$(S)src/doc/nomicon/%.md=nomicon-%),$(file))))
165+
$(foreach file,$(wildcard $(S)src/doc/tarpl/*.md), \
166+
$(eval $(call DOCTEST,$(file:$(S)src/doc/tarpl/%.md=tarpl-%),$(file))))
167167
######################################################################
168168
# Main test targets
169169
######################################################################

branches/auto/src/doc/nomicon/README.md

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

branches/auto/src/doc/reference.md

Lines changed: 4 additions & 5 deletions

branches/auto/src/doc/tarpl/README.md

Lines changed: 34 additions & 0 deletions

branches/auto/src/doc/nomicon/atomics.md renamed to branches/auto/src/doc/tarpl/atomics.md

Lines changed: 1 addition & 1 deletion

branches/auto/src/doc/nomicon/borrow-splitting.md renamed to branches/auto/src/doc/tarpl/borrow-splitting.md

Lines changed: 7 additions & 15 deletions

branches/auto/src/doc/nomicon/concurrency.md renamed to branches/auto/src/doc/tarpl/concurrency.md

Lines changed: 1 addition & 1 deletion

branches/auto/src/doc/nomicon/destructors.md renamed to branches/auto/src/doc/tarpl/destructors.md

Lines changed: 1 addition & 1 deletion

branches/auto/src/doc/nomicon/drop-flags.md renamed to branches/auto/src/doc/tarpl/drop-flags.md

Lines changed: 1 addition & 1 deletion

branches/auto/src/doc/nomicon/dropck.md renamed to branches/auto/src/doc/tarpl/dropck.md

Lines changed: 1 addition & 1 deletion

branches/auto/src/doc/nomicon/send-and-sync.md renamed to branches/auto/src/doc/tarpl/send-and-sync.md

Lines changed: 8 additions & 8 deletions

branches/auto/src/doc/nomicon/subtyping.md renamed to branches/auto/src/doc/tarpl/subtyping.md

Lines changed: 2 additions & 2 deletions

branches/auto/src/doc/nomicon/unchecked-uninit.md renamed to branches/auto/src/doc/tarpl/unchecked-uninit.md

Lines changed: 1 addition & 1 deletion

branches/auto/src/doc/trpl/SUMMARY.md

Lines changed: 2 additions & 1 deletion

branches/auto/src/doc/trpl/choosing-your-guarantees.md

Lines changed: 0 additions & 1 deletion

0 commit comments

Comments
 (0)