Skip to content

Commit 2eccc61

Browse files
committed
---
yaml --- r: 229213 b: refs/heads/try c: 0dc2910 h: refs/heads/master i: 229211: 1486ae3 v: v3
1 parent 58bb781 commit 2eccc61

File tree

295 files changed

+2831
-1459
lines changed

Some content is hidden

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

295 files changed

+2831
-1459
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: aca2057ed5fb7af3f8905b2bc01f72fa001c35c8
33
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4-
refs/heads/try: dcf7ac6f9a84ae52b07f9d7310637c9f9d9815ce
4+
refs/heads/try: 0dc2910c9c7dc322a5a459c91688dc62ccce603c
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
77
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try/.travis.yml

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

2625
env:
2726
- CXX=/usr/bin/g++-4.7

branches/try/RELEASES.md

Lines changed: 1 addition & 1 deletion

branches/try/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 tarpl style error-index
80+
DOC_TARGETS := trpl nomicon 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-
tarpl: doc/adv-book/index.html
290+
nomicon: doc/nomicon/index.html
291291

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

297297
style: doc/style/index.html
298298

branches/try/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.3.0
16+
CFG_RELEASE_NUM=1.4.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/try/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/tarpl/*.md), \
166-
$(eval $(call DOCTEST,$(file:$(S)src/doc/tarpl/%.md=tarpl-%),$(file))))
165+
$(foreach file,$(wildcard $(S)src/doc/nomicon/*.md), \
166+
$(eval $(call DOCTEST,$(file:$(S)src/doc/nomicon/%.md=nomicon-%),$(file))))
167167
######################################################################
168168
# Main test targets
169169
######################################################################
Lines changed: 38 additions & 0 deletions

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

Lines changed: 1 addition & 1 deletion

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

Lines changed: 15 additions & 7 deletions

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

Lines changed: 1 addition & 1 deletion

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

Lines changed: 1 addition & 1 deletion

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

Lines changed: 1 addition & 1 deletion

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

Lines changed: 1 addition & 1 deletion

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

Lines changed: 8 additions & 8 deletions

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

Lines changed: 2 additions & 2 deletions

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

Lines changed: 1 addition & 1 deletion

branches/try/src/doc/reference.md

Lines changed: 5 additions & 4 deletions

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

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

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

Lines changed: 1 addition & 2 deletions

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

Lines changed: 1 addition & 0 deletions

0 commit comments

Comments
 (0)