Skip to content

Commit 300533f

Browse files
committed
---
yaml --- r: 145374 b: refs/heads/try2 c: 9705399 h: refs/heads/master v: v3
1 parent 250278c commit 300533f

File tree

221 files changed

+7593
-10462
lines changed

Some content is hidden

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

221 files changed

+7593
-10462
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 20a10ff9c922722da66d52caacee544c7e1ab03d
8+
refs/heads/try2: 97053995046636c0e11d23c4f0523d278a4210c9
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[attr]rust text eol=lf whitespace=tab-in-indent,trailing-space,tabwidth=4
22

3-
* text eol=lf
3+
* text=auto eol=lf
44
*.cpp rust
55
*.h rust
66
*.rs rust

branches/try2/Makefile.in

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,13 @@ else
100100
CFG_RUSTC_FLAGS += -O --cfg rtopt
101101
endif
102102

103-
ifdef CFG_ENABLE_DEBUG
103+
ifdef CFG_DISABLE_DEBUG
104+
CFG_RUSTC_FLAGS += --cfg ndebug
105+
CFG_GCCISH_CFLAGS += -DRUST_NDEBUG
106+
else
104107
$(info cfg: enabling more debugging (CFG_ENABLE_DEBUG))
105108
CFG_RUSTC_FLAGS += --cfg debug
106109
CFG_GCCISH_CFLAGS += -DRUST_DEBUG
107-
else
108-
CFG_GCCISH_CFLAGS += -DRUST_NDEBUG
109110
endif
110111

111112
ifdef SAVE_TEMPS
@@ -140,7 +141,7 @@ endif
140141

141142
# version-string calculation
142143
CFG_GIT_DIR := $(CFG_SRC_DIR).git
143-
CFG_RELEASE = 0.8-pre
144+
CFG_RELEASE = 0.8
144145
CFG_VERSION = $(CFG_RELEASE)
145146
# windows exe's need numeric versions - don't use anything but
146147
# numbers and dots here
@@ -214,7 +215,6 @@ CFG_LIBRUSTC_$(1) :=$(call CFG_LIB_NAME_$(1),rustc)
214215
CFG_LIBSYNTAX_$(1) :=$(call CFG_LIB_NAME_$(1),syntax)
215216
CFG_LIBRUSTPKG_$(1) :=$(call CFG_LIB_NAME_$(1),rustpkg)
216217
CFG_LIBRUSTDOC_$(1) :=$(call CFG_LIB_NAME_$(1),rustdoc)
217-
CFG_LIBRUSTDOCNG_$(1) :=$(call CFG_LIB_NAME_$(1),rustdoc_ng)
218218
CFG_LIBRUSTI_$(1) :=$(call CFG_LIB_NAME_$(1),rusti)
219219
CFG_LIBRUST_$(1) :=$(call CFG_LIB_NAME_$(1),rust)
220220

@@ -224,7 +224,6 @@ LIBRUSTC_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rustc)
224224
LIBSYNTAX_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),syntax)
225225
LIBRUSTPKG_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rustpkg)
226226
LIBRUSTDOC_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rustdoc)
227-
LIBRUSTDOCNG_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rustdoc_ng)
228227
LIBRUSTI_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rusti)
229228
LIBRUST_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rust)
230229
EXTRALIB_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),extra)
@@ -233,7 +232,6 @@ LIBRUSTC_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rustc)
233232
LIBSYNTAX_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),syntax)
234233
LIBRUSTPKG_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rustpkg)
235234
LIBRUSTDOC_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rustdoc)
236-
LIBRUSTDOCNG_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rustdoc_ng)
237235
LIBRUSTI_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rusti)
238236
LIBRUST_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rust)
239237

@@ -442,12 +440,10 @@ CSREQ$(1)_T_$(2)_H_$(3) = \
442440
$$(TSREQ$(1)_T_$(2)_H_$(3)) \
443441
$$(HBIN$(1)_H_$(3))/rustpkg$$(X_$(3)) \
444442
$$(HBIN$(1)_H_$(3))/rustdoc$$(X_$(3)) \
445-
$$(HBIN$(1)_H_$(3))/rustdoc_ng$$(X_$(3)) \
446443
$$(HBIN$(1)_H_$(3))/rusti$$(X_$(3)) \
447444
$$(HBIN$(1)_H_$(3))/rust$$(X_$(3)) \
448445
$$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTPKG_$(3)) \
449446
$$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTDOC_$(3)) \
450-
$$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTDOCNG_$(3)) \
451447
$$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTI_$(3)) \
452448
$$(HLIB$(1)_H_$(3))/$(CFG_LIBRUST_$(3)) \
453449
$$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
@@ -456,7 +452,6 @@ CSREQ$(1)_T_$(2)_H_$(3) = \
456452
$$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(2)) \
457453
$$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTPKG_$(2)) \
458454
$$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTDOC_$(2)) \
459-
$$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTDOCNG_$(2)) \
460455
$$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTI_$(2)) \
461456
$$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUST_$(2))
462457

branches/try2/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ documentation.
1818
1919
[tutorial]: http://static.rust-lang.org/doc/tutorial.html
2020
[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust
21-
[win-exe]: http://static.rust-lang.org/dist/rust-0.7-install.exe
21+
[win-exe]: http://static.rust-lang.org/dist/rust-0.8-install.exe
2222

2323
### Linux / OS X
2424

@@ -33,9 +33,9 @@ documentation.
3333

3434
To build from the [tarball] do:
3535

36-
$ curl -O http://static.rust-lang.org/dist/rust-0.7.tar.gz
37-
$ tar -xzf rust-0.7.tar.gz
38-
$ cd rust-0.7
36+
$ curl -O http://static.rust-lang.org/dist/rust-0.8.tar.gz
37+
$ tar -xzf rust-0.8.tar.gz
38+
$ cd rust-0.8
3939

4040
Or to build from the [repo] do:
4141

@@ -60,8 +60,8 @@ documentation.
6060
4. Enjoy!
6161

6262
[repo]: https://github.com/mozilla/rust
63-
[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz
64-
[tutorial]: http://static.rust-lang.org/doc/tutorial.html
63+
[tarball]: http://static.rust-lang.org/dist/rust-0.8.tar.gz
64+
[tutorial]: http://static.rust-lang.org/doc/0.8/tutorial.html
6565

6666
## Notes
6767

branches/try2/RELEASES.txt

Lines changed: 156 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,158 @@
1+
Version 0.8 (October 2013)
2+
--------------------------
3+
4+
* ~2100 changes, numerous bugfixes
5+
6+
* Language
7+
* The `for` loop syntax has changed to work with the `Iterator` trait.
8+
* At long last, unwinding works on Windows.
9+
* Default methods are ready for use.
10+
* Many trait inheritance bugs fixed.
11+
* Owned and borrowed trait objects work more reliably.
12+
* `copy` is no longer a keyword. It has been replaced by the `Clone` trait.
13+
* rustc can omit emission of code for the `debug!` macro if it is passed
14+
`--cfg ndebug`
15+
* mod.rs is now "blessed". When loading `mod foo;`, rustc will now look
16+
for foo.rs, then foo/mod.rs, and will generate an error when both are
17+
present.
18+
* Strings no longer contain trailing nulls. The new `std::c_str` module
19+
provides new mechanisms for converting to C strings.
20+
* The type of foreign functions is now `extern "C" fn` instead of `*u8'.
21+
* The FFI has been overhauled such that foreign functions are called directly,
22+
instead of through a stack-switching wrapper.
23+
* Calling a foreign function must be done through a Rust function with the
24+
`#[fixed_stack_segment]` attribute.
25+
* The `externfn!` macro can be used to declare both a foreign function and
26+
a `#[fixed_stack_segment]` wrapper at once.
27+
* `pub` and `priv` modifiers on `extern` blocks are no longer parsed.
28+
* `unsafe` is no longer allowed on extern fns - they are all unsafe.
29+
* `priv` is disallowed everywhere except for struct fields and enum variants.
30+
* `&T` (besides `&'static T`) is no longer allowed in `@T`.
31+
* `ref` bindings in irrefutable patterns work correctly now.
32+
* `char` is now prevented from containing invalid code points.
33+
* Casting to `bool` is no longer allowed.
34+
* `\0` is now accepted as an escape in chars and strings.
35+
* `yield` is a reserved keyword.
36+
* `typeof` is a reserved keyword.
37+
* Crates may be imported by URL with `extern mod foo = "url";`.
38+
* Explicit enum discriminants may be given as uints as in `enum E { V = 0u }`
39+
* Static vectors can be initialized with repeating elements,
40+
e.g. `static foo: [u8, .. 100]: [0, .. 100];`.
41+
* Static structs can be initialized with functional record update,
42+
e.g. `static foo: Foo = Foo { a: 5, .. bar };`.
43+
* `cfg!` can be used to conditionally execute code based on the crate
44+
configuration, similarly to `#[cfg(...)]`.
45+
* The `unnecessary_qualification` lint detects unneeded module
46+
prefixes (default: allow).
47+
* Arithmetic operations have been implemented on the SIMD types in
48+
`std::unstable::simd`.
49+
* Exchange allocation headers were removed, reducing memory usage.
50+
* `format!` implements a completely new, extensible, and higher-performance
51+
string formatting system. It will replace `fmt!`.
52+
* `print!` and `println!` write formatted strings (using the `format!`
53+
extension) to stdout.
54+
* `write!` and `writeln!` write formatted strings (using the `format!`
55+
extension) to the new Writers in `std::rt::io`.
56+
* The library section in which a function or static is placed may
57+
be specified with `#[link_section = "..."]`.
58+
* The `proto!` syntax extension for defining bounded message protocols
59+
was removed.
60+
* `macro_rules!` is hygienic for `let` declarations.
61+
* The `#[export_name]` attribute specifies the name of a symbol.
62+
* `unreachable!` can be used to indicate unreachable code, and fails
63+
if executed.
64+
65+
* Libraries
66+
* std: Transitioned to the new runtime, written in Rust.
67+
* std: Added an experimental I/O library, `rt::io`, based on the new
68+
runtime.
69+
* std: A new generic `range` function was added to the prelude, replacing
70+
`uint::range` and friends.
71+
* std: `range_rev` no longer exists. Since range is an iterator it can be
72+
reversed with `range(lo, hi).invert()`.
73+
* std: The `chain` method on option renamed to `and_then`; `unwrap_or_default`
74+
renamed to `unwrap_or`.
75+
* std: The `iterator` module was renamed to `iter`.
76+
* std: Integral types now support the `checked_add`, `checked_sub`, and
77+
`checked_mul` operations for detecting overflow.
78+
* std: Many methods in `str`, `vec`, `option, `result` were renamed for
79+
consistency.
80+
* std: Methods are standardizing on conventions for casting methods:
81+
`to_foo` for copying, `into_foo` for moving, `as_foo` for temporary
82+
and cheap casts.
83+
* std: The `CString` type in `c_str` provides new ways to convert to and
84+
from C strings.
85+
* std: `DoubleEndedIterator` can yield elements in two directions.
86+
* std: The `mut_split` method on vectors partitions an `&mut [T]` into
87+
two splices.
88+
* std: `str::from_bytes` renamed to `str::from_utf8`.
89+
* std: `pop_opt` and `shift_opt` methods added to vectors.
90+
* std: The task-local data interface no longer uses @, and keys are
91+
no longer function pointers.
92+
* std: The `swap_unwrap` method of `Option` renamed to `take_unwrap`.
93+
* std: Added `SharedPort` to `comm`.
94+
* std: `Eq` has a default method for `ne`; only `eq` is required
95+
in implementations.
96+
* std: `Ord` has default methods for `le`, `gt` and `ge`; only `lt`
97+
is required in implementations.
98+
* std: `is_utf8` performance is improved, impacting many string functions.
99+
* std: `os::MemoryMap` provides cross-platform mmap.
100+
* std: `ptr::offset` is now unsafe, but also more optimized. Offsets that
101+
are not 'in-bounds' are considered undefined.
102+
* std: Many freestanding functions in `vec` removed in favor of methods.
103+
* std: Many freestanding functions on scalar types removed in favor of
104+
methods.
105+
* std: Many options to task builders were removed since they don't make
106+
sense in the new scheduler design.
107+
* std: More containers implement `FromIterator` so can be created by the
108+
`collect` method.
109+
* std: More complete atomic types in `unstable::atomics`.
110+
* std: `comm::PortSet` removed.
111+
* std: Mutating methods in the `Set` and `Map` traits have been moved into
112+
the `MutableSet` and `MutableMap` traits. `Container::is_empty`,
113+
`Map::contains_key`, `MutableMap::insert`, and `MutableMap::remove` have
114+
default implementations.
115+
* std: Various `from_str` functions were removed in favor of a generic
116+
`from_str` which is available in the prelude.
117+
* std: `util::unreachable` removed in favor of the `unreachable!` macro.
118+
* extra: `dlist`, the doubly-linked list was modernized.
119+
* extra: Added a `hex` module with `ToHex` and `FromHex` traits.
120+
* extra: Added `glob` module, replacing `std::os::glob`.
121+
* extra: `rope` was removed.
122+
* extra: `deque` was renamed to `ringbuf`. `RingBuf` implements `Deque`.
123+
* extra: `net`, and `timer` were removed. The experimental replacements
124+
are `std::rt::io::net` and `std::rt::io::timer`.
125+
* extra: Iterators implemented for `SmallIntMap`.
126+
* extra: Iterators implemented for `Bitv` and `BitvSet`.
127+
* extra: `SmallIntSet` removed. Use `BitvSet`.
128+
* extra: Performance of JSON parsing greatly improved.
129+
* extra: `semver` updated to SemVer 2.0.0.
130+
* extra: `term` handles more terminals correctly.
131+
* extra: `dbg` module removed.
132+
* extra: `par` module removed.
133+
* extra: `future` was cleaned up, with some method renames.
134+
* extra: Most free functions in `getopts` were converted to methods.
135+
136+
* Other
137+
* rustc's debug info generation (`-Z debug-info`) is greatly improved.
138+
* rustc accepts `--target-cpu` to compile to a specific CPU architecture,
139+
similarly to gcc's `--march` flag.
140+
* rustc's performance compiling small crates is much better.
141+
* rustpkg has received many improvements.
142+
* rustpkg supports git tags as package IDs.
143+
* rustpkg builds into target-specific directories so it can be used for
144+
cross-compiling.
145+
* The number of concurrent test tasks is controlled by the environment
146+
variable RUST_TEST_TASKS.
147+
* The test harness can now report metrics for benchmarks.
148+
* All tools have man pages.
149+
* Programs compiled with `--test` now support the `-h` and `--help` flags.
150+
* The runtime uses jemalloc for allocations.
151+
* Segmented stacks are temporarily disabled as part of the transition to
152+
the new runtime. Stack overflows are possible!
153+
* A new documentation backend, rustdoc_ng, is available for use. It is
154+
still invoked through the normal `rustdoc` command.
155+
1156
Version 0.7 (July 2013)
2157
-----------------------
3158

@@ -57,6 +212,7 @@ Version 0.7 (July 2013)
57212
* std: Many old internal vector and string iterators,
58213
incl. `any`, `all`. removed.
59214
* std: The `finalize` method of `Drop` renamed to `drop`.
215+
* std: The `drop` method now takes `&mut self` instead of `&self`.
60216
* std: The prelude no longer reexports any modules, only types and traits.
61217
* std: Prelude additions: `print`, `println`, `FromStr`, `ApproxEq`, `Equiv`,
62218
`Iterator`, `IteratorUtil`, many numeric traits, many tuple traits.

branches/try2/configure

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ opt optimize-cxx 1 "build optimized C++ code"
373373
opt optimize-llvm 1 "build optimized LLVM"
374374
opt optimize-tests 1 "build tests with optimizations"
375375
opt llvm-assertions 1 "build LLVM with assertions"
376-
opt debug 0 "build with extra debug fun"
376+
opt debug 1 "build with extra debug fun"
377377
opt ratchet-bench 0 "ratchet benchmarks"
378378
opt fast-make 0 "use .gitmodules as timestamp for submodule deps"
379379
opt manage-submodules 1 "let the build manage the git submodules"
@@ -845,6 +845,9 @@ do
845845

846846
# Disable unused LLVM features
847847
LLVM_OPTS="$LLVM_DBG_OPTS $LLVM_ASSERTION_OPTS --disable-docs --enable-bindings=none"
848+
# Disable term-info, linkage of which comes in multiple forms,
849+
# making our snapshots incompatible (#9334)
850+
LLVM_OPTS="$LLVM_OPTS --disable-terminfo"
848851

849852
case "$CFG_C_COMPILER" in
850853
("ccache clang")

branches/try2/doc/po/ja/rust.md.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: Rust 0.8-pre\n"
8+
"Project-Id-Version: Rust 0.8\n"
99
"POT-Creation-Date: 2013-08-12 02:06+0900\n"
1010
"PO-Revision-Date: 2013-08-05 19:40+0900\n"
1111
"Last-Translator: Automatically generated\n"

branches/try2/doc/po/ja/rustpkg.md.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: Rust 0.8-pre\n"
8+
"Project-Id-Version: Rust 0.8\n"
99
"POT-Creation-Date: 2013-07-30 07:07+0900\n"
1010
"PO-Revision-Date: 2013-07-28 20:32+0900\n"
1111
"Last-Translator: Automatically generated\n"

branches/try2/doc/po/ja/tutorial-borrowed-ptr.md.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: Rust 0.8-pre\n"
8+
"Project-Id-Version: Rust 0.8\n"
99
"POT-Creation-Date: 2013-07-22 23:37+0900\n"
1010
"PO-Revision-Date: 2013-07-28 20:32+0900\n"
1111
"Last-Translator: Automatically generated\n"

branches/try2/doc/po/ja/tutorial-container.md.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: Rust 0.8-pre\n"
8+
"Project-Id-Version: Rust 0.8\n"
99
"POT-Creation-Date: 2013-08-05 19:40+0900\n"
1010
"PO-Revision-Date: 2013-07-28 20:32+0900\n"
1111
"Last-Translator: Automatically generated\n"

branches/try2/doc/po/ja/tutorial-ffi.md.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: Rust 0.8-pre\n"
8+
"Project-Id-Version: Rust 0.8\n"
99
"POT-Creation-Date: 2013-08-10 07:44+0900\n"
1010
"PO-Revision-Date: 2013-07-22 23:37+0900\n"
1111
"Last-Translator: Automatically generated\n"

branches/try2/doc/po/ja/tutorial-macros.md.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: Rust 0.8-pre\n"
8+
"Project-Id-Version: Rust 0.8\n"
99
"POT-Creation-Date: 2013-07-28 20:32+0900\n"
1010
"PO-Revision-Date: 2013-07-28 20:32+0900\n"
1111
"Last-Translator: Automatically generated\n"

branches/try2/doc/po/ja/tutorial-tasks.md.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: Rust 0.8-pre\n"
8+
"Project-Id-Version: Rust 0.8\n"
99
"POT-Creation-Date: 2013-08-08 22:27+0900\n"
1010
"PO-Revision-Date: 2013-07-28 20:32+0900\n"
1111
"Last-Translator: Automatically generated\n"

branches/try2/doc/po/ja/tutorial.md.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: Rust 0.8-pre\n"
8+
"Project-Id-Version: Rust 0.8\n"
99
"POT-Creation-Date: 2013-08-12 02:06+0900\n"
1010
"PO-Revision-Date: 2013-08-08 22:27+0900\n"
1111
"Last-Translator: Automatically generated\n"

branches/try2/doc/po/rust.md.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#, fuzzy
77
msgid ""
88
msgstr ""
9-
"Project-Id-Version: Rust 0.8-pre\n"
9+
"Project-Id-Version: Rust 0.8\n"
1010
"POT-Creation-Date: 2013-08-12 02:06+0900\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"

branches/try2/doc/po/rustpkg.md.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#, fuzzy
77
msgid ""
88
msgstr ""
9-
"Project-Id-Version: Rust 0.8-pre\n"
9+
"Project-Id-Version: Rust 0.8\n"
1010
"POT-Creation-Date: 2013-07-30 07:07+0900\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"

0 commit comments

Comments
 (0)