February 21, 2015 [phobos] [D-Programming-Language/phobos] 6126ae: Fix typo | ||||
---|---|---|---|---|
| ||||
Attachments:
| Branch: refs/tags/auto-tester-testing Home: https://github.com/D-Programming-Language/phobos Commit: 6126ae5549f93d7241f9644a7caa6c099527b74d https://github.com/D-Programming-Language/phobos/commit/6126ae5549f93d7241f9644a7caa6c099527b74d Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-07 (Sat, 07 Feb 2015) Changed paths: M std/experimental/logger/package.d Log Message: ----------- Fix typo Commit: 3eb366d2590be148959a968446be80c778689d57 https://github.com/D-Programming-Language/phobos/commit/3eb366d2590be148959a968446be80c778689d57 Author: David Nadlinger <code@klickverbot.at> Date: 2015-02-08 (Sun, 08 Feb 2015) Changed paths: M std/experimental/logger/package.d Log Message: ----------- Merge pull request #2967 from quickfur/logger_typo [trivial] Fix typo in std.experimental.logger docs Commit: 41f243a6c29f00ab4cdeb69d418796ed00fa0c51 https://github.com/D-Programming-Language/phobos/commit/41f243a6c29f00ab4cdeb69d418796ed00fa0c51 Author: k-hara <k.hara.pg@gmail.com> Date: 2015-02-09 (Mon, 09 Feb 2015) Changed paths: M std/traits.d Log Message: ----------- Supplemental fix for issue 2789 Commit: d99ad147e4245664556d5e0e51fa539fe8281ea7 https://github.com/D-Programming-Language/phobos/commit/d99ad147e4245664556d5e0e51fa539fe8281ea7 Author: anonymous <aG0aep6G@users.noreply.github.com> Date: 2015-02-09 (Mon, 09 Feb 2015) Changed paths: M std/format.d Log Message: ----------- add missing dl tags Commit: 3886e0ac6c4da6b63a42ffa6de0b87d140ece507 https://github.com/D-Programming-Language/phobos/commit/3886e0ac6c4da6b63a42ffa6de0b87d140ece507 Author: anonymous <aG0aep6G@users.noreply.github.com> Date: 2015-02-09 (Mon, 09 Feb 2015) Changed paths: M std/format.d Log Message: ----------- indent Commit: 799fdf81adc9ba2cf17edaaad3f1e2621cdcdf95 https://github.com/D-Programming-Language/phobos/commit/799fdf81adc9ba2cf17edaaad3f1e2621cdcdf95 Author: Hara Kenji <k.hara.pg+dev@gmail.com> Date: 2015-02-10 (Tue, 10 Feb 2015) Changed paths: M std/format.d Log Message: ----------- Merge pull request #2970 from aG0aep6G/14153 [DDoc] fix Issue 14153 - std.format page displaying incorrectly Commit: e7b3d834d749117978c89735e85ed6823e8a116f https://github.com/D-Programming-Language/phobos/commit/e7b3d834d749117978c89735e85ed6823e8a116f Author: k-hara <k.hara.pg@gmail.com> Date: 2015-02-10 (Tue, 10 Feb 2015) Changed paths: M std/algorithm/mutation.d M std/complex.d M std/encoding.d M std/experimental/logger/package.d M std/functional.d M std/internal/math/gammafunction.d M std/internal/scopebuffer.d M std/internal/test/dummyrange.d M std/math.d M std/mmfile.d M std/net/curl.d M std/parallelism.d M std/regex/internal/thompson.d M std/string.d M std/zip.d Log Message: ----------- detab and remove trailing whitespaces Commit: 611a9a1b9bdd2e1edab8a4a0ab1bc962a5d25487 https://github.com/D-Programming-Language/phobos/commit/611a9a1b9bdd2e1edab8a4a0ab1bc962a5d25487 Author: k-hara <k.hara.pg@gmail.com> Date: 2015-02-10 (Tue, 10 Feb 2015) Changed paths: M std/exception.d M std/experimental/logger/multilogger.d M std/json.d M std/zip.d Log Message: ----------- fix property enforcement Commit: a8150a975988681a6e129efa58676a72a1267eb3 https://github.com/D-Programming-Language/phobos/commit/a8150a975988681a6e129efa58676a72a1267eb3 Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-09 (Mon, 09 Feb 2015) Changed paths: M std/algorithm/mutation.d M std/complex.d M std/encoding.d M std/exception.d M std/experimental/logger/multilogger.d M std/experimental/logger/package.d M std/functional.d M std/internal/math/gammafunction.d M std/internal/scopebuffer.d M std/internal/test/dummyrange.d M std/json.d M std/math.d M std/mmfile.d M std/net/curl.d M std/parallelism.d M std/regex/internal/thompson.d M std/string.d M std/zip.d Log Message: ----------- Merge pull request #2972 from 9rnsr/enforceProp fix property enforcement Commit: cd8b96c03272bea7fb763a1d8f6c01a946e01d93 https://github.com/D-Programming-Language/phobos/commit/cd8b96c03272bea7fb763a1d8f6c01a946e01d93 Author: Matt Kline <slavik262@gmail.com> Date: 2015-02-09 (Mon, 09 Feb 2015) Changed paths: M std/getopt.d Log Message: ----------- Add keeEndOfOptions flag to std.getopt Currently, the endOfOptions separator ("--" by default) is stripped from args by getopt. At times it may be advantageous to keep this separator, such as when your program is forwarding command line arguments to some other program. Without this, hacks such as auto remaining = args.find(endOfOptions); args = args[0 .. $ - remaining.length]; getopt(args, opts); args = args ~ remaining; are needed to achieve the desired behavior. Commit: aee709b080d374f5db265cf8fe7c20a5965653e0 https://github.com/D-Programming-Language/phobos/commit/aee709b080d374f5db265cf8fe7c20a5965653e0 Author: Matt Kline <slavik262@gmail.com> Date: 2015-02-09 (Mon, 09 Feb 2015) Changed paths: M std/getopt.d Log Message: ----------- Remove array dup from this PR Commit: cae91b00a2fc8c5a059d1117914e83593a092e26 https://github.com/D-Programming-Language/phobos/commit/cae91b00a2fc8c5a059d1117914e83593a092e26 Author: Walter Bright <walter@walterbright.com> Date: 2015-02-10 (Tue, 10 Feb 2015) Changed paths: M std/file.d Log Message: ----------- document replacing D1's listdir() Commit: 1736e6e85c2ae4e544c185ce622d5cbfe6c9daeb https://github.com/D-Programming-Language/phobos/commit/1736e6e85c2ae4e544c185ce622d5cbfe6c9daeb Author: k-hara <k.hara.pg@gmail.com> Date: 2015-02-10 (Tue, 10 Feb 2015) Changed paths: M std/algorithm/searching.d Log Message: ----------- Add missing imports Commit: 2bca140b84bcf8288ea3d0c4b68e795cbf7c06b3 https://github.com/D-Programming-Language/phobos/commit/2bca140b84bcf8288ea3d0c4b68e795cbf7c06b3 Author: Robert burner Schadek <rburners@gmail.com> Date: 2015-02-10 (Tue, 10 Feb 2015) Changed paths: M std/experimental/logger/core.d Log Message: ----------- log specification of zero arg call was broken some more Commit: ce60850865222581c92a11293739e882fe985c98 https://github.com/D-Programming-Language/phobos/commit/ce60850865222581c92a11293739e882fe985c98 Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-10 (Tue, 10 Feb 2015) Changed paths: M std/algorithm/searching.d Log Message: ----------- Merge pull request #2975 from 9rnsr/fix_imports Add missing imports Commit: 877e490de71cadd558ed7d7baf48c9c24042ed48 https://github.com/D-Programming-Language/phobos/commit/877e490de71cadd558ed7d7baf48c9c24042ed48 Author: Walter Bright <walter@walterbright.com> Date: 2015-02-10 (Tue, 10 Feb 2015) Changed paths: M std/array.d Log Message: ----------- fix trusted issues in std.array Commit: a6b0c022ef3c10e8602470f9479e239d883dd791 https://github.com/D-Programming-Language/phobos/commit/a6b0c022ef3c10e8602470f9479e239d883dd791 Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-10 (Tue, 10 Feb 2015) Changed paths: M std/experimental/logger/core.d Log Message: ----------- Merge pull request #2976 from burner/logger_zero_args log specification of zero arg call was broken Commit: 6523440d158e424e757a7b09c3d657bda180e1c2 https://github.com/D-Programming-Language/phobos/commit/6523440d158e424e757a7b09c3d657bda180e1c2 Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-10 (Tue, 10 Feb 2015) Changed paths: M std/file.d Log Message: ----------- Merge pull request #2973 from WalterBright/listdir document replacing D1's listdir() Commit: 38802decf57fb6e1ca81c7ee72d9b6635c0d22af https://github.com/D-Programming-Language/phobos/commit/38802decf57fb6e1ca81c7ee72d9b6635c0d22af Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-10 (Tue, 10 Feb 2015) Changed paths: M std/file.d Log Message: ----------- Update file.d Commit: 239031274e386441024b61709fc13115d7deb776 https://github.com/D-Programming-Language/phobos/commit/239031274e386441024b61709fc13115d7deb776 Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-10 (Tue, 10 Feb 2015) Changed paths: M std/array.d Log Message: ----------- Merge pull request #2966 from WalterBright/trusted-array fix trusted issues in std.array Commit: 4265c4e37970a406e83505365bf30a4c365e4909 https://github.com/D-Programming-Language/phobos/commit/4265c4e37970a406e83505365bf30a4c365e4909 Author: Jakob Ovrum <jakobovrum@gmail.com> Date: 2015-02-11 (Wed, 11 Feb 2015) Changed paths: M std/exception.d Log Message: ----------- Change std.exception.handle to not use AliasThis Commit: 96f682aba280f6819410d8b1b8656bafae8c0bf0 https://github.com/D-Programming-Language/phobos/commit/96f682aba280f6819410d8b1b8656bafae8c0bf0 Author: Jakob Ovrum <jakobovrum@gmail.com> Date: 2015-02-11 (Wed, 11 Feb 2015) Changed paths: M std/typecons.d Log Message: ----------- Reject instantiating RefCounted with interface types Commit: a0086a9e2fcb209f39f6769c65c5295ef2b7ad8b https://github.com/D-Programming-Language/phobos/commit/a0086a9e2fcb209f39f6769c65c5295ef2b7ad8b Author: Jakob Ovrum <jakobovrum@gmail.com> Date: 2015-02-11 (Wed, 11 Feb 2015) Changed paths: M std/exception.d Log Message: ----------- Add RangePrimitive.access and RangePrimitive.pop pseudo-primitives Commit: 6154858502c9835631eb776c813914d1b5d80ecc https://github.com/D-Programming-Language/phobos/commit/6154858502c9835631eb776c813914d1b5d80ecc Author: Jakob Ovrum <jakobovrum@gmail.com> Date: 2015-02-11 (Wed, 11 Feb 2015) Changed paths: M std/exception.d Log Message: ----------- Add optional `index` argument to the opIndex handler of std.exception.handle Commit: 58b59a1d825c7f11f0fb4b164d3bbba5ab8be66f https://github.com/D-Programming-Language/phobos/commit/58b59a1d825c7f11f0fb4b164d3bbba5ab8be66f Author: Jakob Ovrum <jakobovrum@gmail.com> Date: 2015-02-11 (Wed, 11 Feb 2015) Changed paths: M std/exception.d Log Message: ----------- Add `pure`, `nothrow` and `@safe` to std.exception.handle's unittests where appropriate Commit: f4d3493df78214d3d07961031ec45d02ef2f110e https://github.com/D-Programming-Language/phobos/commit/f4d3493df78214d3d07961031ec45d02ef2f110e Author: monarch dodra <monarchdodra@gmail.com> Date: 2015-02-11 (Wed, 11 Feb 2015) Changed paths: M std/typecons.d Log Message: ----------- Merge pull request #2977 from JakobOvrum/refcounted_interface Reject instantiating RefCounted with interface types Commit: 1129a2cd7ff99caa2f11a00cc35e4daec07373cd https://github.com/D-Programming-Language/phobos/commit/1129a2cd7ff99caa2f11a00cc35e4daec07373cd Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-11 (Wed, 11 Feb 2015) Changed paths: M std/getopt.d Log Message: ----------- Merge pull request #2974 from mrkline/getopt-preserve-EOO Add keepEndOfOptions flag to std.getopt Commit: f165215a0a0d9e926767b7a4d2e72904bd345b46 https://github.com/D-Programming-Language/phobos/commit/f165215a0a0d9e926767b7a4d2e72904bd345b46 Author: Brad Roberts <braddr@puremagic.com> Date: 2015-02-12 (Thu, 12 Feb 2015) Changed paths: M posix.mak M win32.mak M win64.mak Log Message: ----------- explicitly disable using a conf file during the build Commit: a15d9be6fd1b1863d40ccd07dffa5cf326a307fb https://github.com/D-Programming-Language/phobos/commit/a15d9be6fd1b1863d40ccd07dffa5cf326a307fb Author: Matt Kline <matt@bitbashing.io> Date: 2015-02-12 (Thu, 12 Feb 2015) Changed paths: M std/algorithm/sorting.d M std/conv.d M std/getopt.d Log Message: ----------- Remove unneeded .dup of arrays See comments from #2974, specifically https://github.com/D-Programming-Language/phobos/pull/2974#discussion_r24388654 Commit: ff39040b81e63d4afda9f84740daefc9a85189b2 https://github.com/D-Programming-Language/phobos/commit/ff39040b81e63d4afda9f84740daefc9a85189b2 Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-12 (Thu, 12 Feb 2015) Changed paths: M std/exception.d Log Message: ----------- Merge pull request #2953 from JakobOvrum/std_exception_handle Improve std.exception.handle Commit: 6e9307b4922ec4635af50660afacbabc34d9e573 https://github.com/D-Programming-Language/phobos/commit/6e9307b4922ec4635af50660afacbabc34d9e573 Author: Matt Kline <matt@bitbashing.io> Date: 2015-02-13 (Fri, 13 Feb 2015) Changed paths: M std/getopt.d Log Message: ----------- Kill more .dups in std.getopt Commit: 9a3cfd1aaa54fa65a10e2a4127bd8123badad436 https://github.com/D-Programming-Language/phobos/commit/9a3cfd1aaa54fa65a10e2a4127bd8123badad436 Author: Matt Kline <matt@bitbashing.io> Date: 2015-02-13 (Fri, 13 Feb 2015) Changed paths: M std/getopt.d Log Message: ----------- Goodbye to more dups. Many thanks to Steven Schveighoffer for catching these. Commit: f10cf5ba577cbcee10289b4ab3e3eedf3c7c77b9 https://github.com/D-Programming-Language/phobos/commit/f10cf5ba577cbcee10289b4ab3e3eedf3c7c77b9 Author: Matt Kline <matt@bitbashing.io> Date: 2015-02-13 (Fri, 13 Feb 2015) Changed paths: M std/getopt.d Log Message: ----------- Remove parens from last commit Commit: 4345097a7df10dcc4f44cefcdad39be1a5f162db https://github.com/D-Programming-Language/phobos/commit/4345097a7df10dcc4f44cefcdad39be1a5f162db Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-13 (Fri, 13 Feb 2015) Changed paths: M std/algorithm/sorting.d M std/conv.d M std/getopt.d Log Message: ----------- Merge pull request #2981 from mrkline/remove-unneeded-dups Remove unneeded .dup of arrays Commit: 3663ba92dda2bfdaba20534ab5f46f4f804ad30b https://github.com/D-Programming-Language/phobos/commit/3663ba92dda2bfdaba20534ab5f46f4f804ad30b Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-13 (Fri, 13 Feb 2015) Changed paths: M posix.mak M win32.mak M win64.mak Log Message: ----------- Merge pull request #2980 from braddr/noconf explicitly disable using a conf file during the build Commit: d4a5f819adcb5cfa81f65b4e8d5eaad46291a05e https://github.com/D-Programming-Language/phobos/commit/d4a5f819adcb5cfa81f65b4e8d5eaad46291a05e Author: Walter Bright <walter@walterbright.com> Date: 2015-02-13 (Fri, 13 Feb 2015) Changed paths: M std/string.d Log Message: ----------- improve string.splitLines() Commit: 71f430790e328b527ebe72646b10013d1fb26206 https://github.com/D-Programming-Language/phobos/commit/71f430790e328b527ebe72646b10013d1fb26206 Author: rsw0x <rsw0x@users.noreply.github.com> Date: 2015-02-13 (Fri, 13 Feb 2015) Changed paths: M std/zip.d Log Message: ----------- Update zip.d These bugs are marked as FIXED. Commit: ab3c749376ecbda07722784b10e3ffe34b1ef901 https://github.com/D-Programming-Language/phobos/commit/ab3c749376ecbda07722784b10e3ffe34b1ef901 Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-13 (Fri, 13 Feb 2015) Changed paths: M std/string.d Log Message: ----------- Merge pull request #2982 from WalterBright/splitlines improve string.splitLines() Commit: b42c1bddda246054cdb91fc8e8674e56adff97b4 https://github.com/D-Programming-Language/phobos/commit/b42c1bddda246054cdb91fc8e8674e56adff97b4 Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-13 (Fri, 13 Feb 2015) Changed paths: M std/zip.d Log Message: ----------- Merge pull request #2984 from rsw0x/patch-1 Zip.d documentation update Commit: 492ab0df906d72a371a6ed950ee7b13ee4093047 https://github.com/D-Programming-Language/phobos/commit/492ab0df906d72a371a6ed950ee7b13ee4093047 Author: sinkuu <sinkuupump@gmail.com> Date: 2015-02-14 (Sat, 14 Feb 2015) Changed paths: M std/algorithm/comparison.d M std/algorithm/iteration.d M std/algorithm/searching.d Log Message: ----------- Fix Issue 14149 - Bad std.algorithm error messages Commit: b55c07c63a76ce56526afb1253ece5cda063849c https://github.com/D-Programming-Language/phobos/commit/b55c07c63a76ce56526afb1253ece5cda063849c Author: sinkuu <sinkuupump@gmail.com> Date: 2015-02-14 (Sat, 14 Feb 2015) Changed paths: M posix.mak M std/algorithm/comparison.d A std/algorithm/internal.d M std/algorithm/iteration.d M std/algorithm/mutation.d M std/algorithm/package.d M std/algorithm/searching.d M std/algorithm/setops.d M std/algorithm/sorting.d M win32.mak M win64.mak Log Message: ----------- Move internal stuff to std.algorithm.internal Commit: a894b3d5aa61a4574a5d62f01d7c301844d8e6fc https://github.com/D-Programming-Language/phobos/commit/a894b3d5aa61a4574a5d62f01d7c301844d8e6fc Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-14 (Sat, 14 Feb 2015) Changed paths: M std/algorithm/setops.d Log Message: ----------- Improved constraints and front() for setUnion Commit: d494e27c359fbc676e20454bcb10b04dd6969d64 https://github.com/D-Programming-Language/phobos/commit/d494e27c359fbc676e20454bcb10b04dd6969d64 Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-14 (Sat, 14 Feb 2015) Changed paths: M std/algorithm/setops.d Log Message: ----------- Merge pull request #2985 from andralex/SetUnionConstraint [TRIVIAL] Improved constraints and front() for setUnion Commit: c1fc82abd99afd431c6bafbb6bca7536dc6c3633 https://github.com/D-Programming-Language/phobos/commit/c1fc82abd99afd431c6bafbb6bca7536dc6c3633 Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-14 (Sat, 14 Feb 2015) Changed paths: M posix.mak Log Message: ----------- make unittest should test both debug and release Commit: 9e69cce14c1368f4a052799f09e0ad8f259f3c17 https://github.com/D-Programming-Language/phobos/commit/9e69cce14c1368f4a052799f09e0ad8f259f3c17 Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-14 (Sat, 14 Feb 2015) Changed paths: M posix.mak Log Message: ----------- Use MAKEFLAGS instead of -j Commit: 05729d9770e83159af2890ad8400d71b06ccaf5c https://github.com/D-Programming-Language/phobos/commit/05729d9770e83159af2890ad8400d71b06ccaf5c Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-14 (Sat, 14 Feb 2015) Changed paths: M posix.mak Log Message: ----------- .PHONY : unittest Commit: ee7d941b9a2cc73e1149bd5ceff92dce1c002d9d https://github.com/D-Programming-Language/phobos/commit/ee7d941b9a2cc73e1149bd5ceff92dce1c002d9d Author: majiang <majiang@users.noreply.github.com> Date: 2015-02-15 (Sun, 15 Feb 2015) Changed paths: M std/mathspecial.d Log Message: ----------- Fix Issue 14181 - Wrong document for std.mathspecial.normalDistribution Commit: 3533fa4020c9500294934e6f1e0527bb03ec63b3 https://github.com/D-Programming-Language/phobos/commit/3533fa4020c9500294934e6f1e0527bb03ec63b3 Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-15 (Sun, 15 Feb 2015) Changed paths: M std/mathspecial.d Log Message: ----------- Merge pull request #2988 from majiang/patch-3 Fix Issue 14181 - Wrong document for std.mathspecial.normalDistribution Commit: 685c27b2d8659bd6552fa5fba315dcff9ea69114 https://github.com/D-Programming-Language/phobos/commit/685c27b2d8659bd6552fa5fba315dcff9ea69114 Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-15 (Sun, 15 Feb 2015) Changed paths: M posix.mak M std/algorithm/comparison.d A std/algorithm/internal.d M std/algorithm/iteration.d M std/algorithm/mutation.d M std/algorithm/package.d M std/algorithm/searching.d M std/algorithm/setops.d M std/algorithm/sorting.d M win32.mak M win64.mak Log Message: ----------- Merge pull request #2979 from sinkuu/fix_14149 Issue 14149 - Bad std.algorithm error messages Commit: 18336ad9e400ad42deccd9c9ad8a63b6d1b44c6b https://github.com/D-Programming-Language/phobos/commit/18336ad9e400ad42deccd9c9ad8a63b6d1b44c6b Author: Walter Bright <walter@walterbright.com> Date: 2015-02-15 (Sun, 15 Feb 2015) Changed paths: M std/string.d Log Message: ----------- add std.string.splitterLines() Commit: 59250ecaa8cfffa626172a9128d521ca9f83fd5d https://github.com/D-Programming-Language/phobos/commit/59250ecaa8cfffa626172a9128d521ca9f83fd5d Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-15 (Sun, 15 Feb 2015) Changed paths: M std/string.d Log Message: ----------- Merge pull request #2987 from WalterBright/string-splitterLines add std.string.splitterLines() Commit: 97e574707732325344d8681242d29c4df50c4657 https://github.com/D-Programming-Language/phobos/commit/97e574707732325344d8681242d29c4df50c4657 Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-15 (Sun, 15 Feb 2015) Changed paths: M posix.mak Log Message: ----------- Changed order of cmdline arguments Commit: ed896ca21c7011c536b8bdccd256939ed874f663 https://github.com/D-Programming-Language/phobos/commit/ed896ca21c7011c536b8bdccd256939ed874f663 Author: Walter Bright <walter@walterbright.com> Date: 2015-02-15 (Sun, 15 Feb 2015) Changed paths: M posix.mak Log Message: ----------- Merge pull request #2946 from andralex/unittest make unittest should test both debug and release Commit: 0fdb6e0c35d34429395396c868b3f9c0fd704b9d https://github.com/D-Programming-Language/phobos/commit/0fdb6e0c35d34429395396c868b3f9c0fd704b9d Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-15 (Sun, 15 Feb 2015) Changed paths: M posix.mak Log Message: ----------- Change std_xyz_package.html -> std_xyz.html Commit: 836b1ad723a999a835aa619c391aaacb92d6d3de https://github.com/D-Programming-Language/phobos/commit/836b1ad723a999a835aa619c391aaacb92d6d3de Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-15 (Sun, 15 Feb 2015) Changed paths: M std/algorithm/searching.d Log Message: ----------- skipOver: no unnecessary decoding Commit: 05c4b71b872b5b77d845d08a9602b344168919e6 https://github.com/D-Programming-Language/phobos/commit/05c4b71b872b5b77d845d08a9602b344168919e6 Author: Ulrich Küttler <kuettler@gmail.com> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/uuid.d Log Message: ----------- Cleanup uuid documentation Commit: 285593e4324ad7ab864f84ff728c7bd85f88658e https://github.com/D-Programming-Language/phobos/commit/285593e4324ad7ab864f84ff728c7bd85f88658e Author: Ulrich Küttler <kuettler@gmail.com> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/digest/digest.d Log Message: ----------- Remove unused (outdated) macros Commit: 4e6284d20ff0a4d01077dcc5bf70bcd9336c08f4 https://github.com/D-Programming-Language/phobos/commit/4e6284d20ff0a4d01077dcc5bf70bcd9336c08f4 Author: k-hara <k.hara.pg@gmail.com> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M unittest.d Log Message: ----------- fix printf and main() signature Commit: e81a433f5c4de94c2d45d9a0a69f525f612d097c https://github.com/D-Programming-Language/phobos/commit/e81a433f5c4de94c2d45d9a0a69f525f612d097c Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M unittest.d Log Message: ----------- Merge pull request #2994 from 9rnsr/fix_unittest [trivial] fix printf and main() signature Commit: 3aa5ae476d96f0b871cf97d2bd4b538e61cc980f https://github.com/D-Programming-Language/phobos/commit/3aa5ae476d96f0b871cf97d2bd4b538e61cc980f Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/digest/digest.d Log Message: ----------- Merge pull request #2993 from kuettler/digest_doc_cleanup Remove unused (outdated) macros Commit: e8ce21d16a28c82fcddb62980c424b8f46570748 https://github.com/D-Programming-Language/phobos/commit/e8ce21d16a28c82fcddb62980c424b8f46570748 Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/uuid.d Log Message: ----------- Merge pull request #2992 from kuettler/uuid_doc_cleanup Cleanup uuid documentation Commit: a43e8d22cd4b95240cd34cd363e1d9b70c350dbb https://github.com/D-Programming-Language/phobos/commit/a43e8d22cd4b95240cd34cd363e1d9b70c350dbb Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/algorithm/package.d M std/functional.d Log Message: ----------- Move 'forward' to std.functional. Commit: 873f448ef3a5f2093546bffec55309b68e0fe6ff https://github.com/D-Programming-Language/phobos/commit/873f448ef3a5f2093546bffec55309b68e0fe6ff Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/algorithm/package.d M std/algorithm/setops.d M std/algorithm/sorting.d Log Message: ----------- Move SortOutput to std.algorithm.sorting. Commit: d4a85e24c4bb7050ec8c60549478ad6fbb54e043 https://github.com/D-Programming-Language/phobos/commit/d4a85e24c4bb7050ec8c60549478ad6fbb54e043 Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/range/interfaces.d Log Message: ----------- iota is not in std.algorithm, it's in std.range. Commit: 32ca6fb720d52abcb5d275b06e0fe2b7920d43cf https://github.com/D-Programming-Language/phobos/commit/32ca6fb720d52abcb5d275b06e0fe2b7920d43cf Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/typecons.d Log Message: ----------- forward() has moved to std.functional. Commit: 122f7ca5ecfbb58234ae0dac3113d420b64f62a5 https://github.com/D-Programming-Language/phobos/commit/122f7ca5ecfbb58234ae0dac3113d420b64f62a5 Author: Steven Schveighoffer <schveiguy@yahoo.com> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/traits.d Log Message: ----------- Merge pull request #2968 from 9rnsr/fix2789 Supplemental fix for issue 2789 Commit: 22a68697f3a46f6de836a6b8a3b83d657de4e1e4 https://github.com/D-Programming-Language/phobos/commit/22a68697f3a46f6de836a6b8a3b83d657de4e1e4 Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/algorithm/package.d Log Message: ----------- Forwarding alias to new location of forward(). Commit: 32db27180e14e54a249ecb77de09fcfc843dd642 https://github.com/D-Programming-Language/phobos/commit/32db27180e14e54a249ecb77de09fcfc843dd642 Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/algorithm/package.d Log Message: ----------- Merge commit '22a6869' into std_algo_cleanup Add forwarding alias to std.functional.forward to prevent breaking existing code. Commit: 4208a0d9fc518d4e154f3858dea9e165ef2919b6 https://github.com/D-Programming-Language/phobos/commit/4208a0d9fc518d4e154f3858dea9e165ef2919b6 Author: H. S. Teoh <hsteoh@quickfur.ath.cx> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/algorithm/package.d Log Message: ----------- Deprecation message. Commit: 11b32b56e579dcb6491db0420f53ac97843f79f7 https://github.com/D-Programming-Language/phobos/commit/11b32b56e579dcb6491db0420f53ac97843f79f7 Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M index.d M std/algorithm/comparison.d M std/algorithm/iteration.d M std/algorithm/mutation.d M std/algorithm/searching.d M std/algorithm/setops.d M std/algorithm/sorting.d M std/container/array.d M std/container/binaryheap.d M std/container/dlist.d M std/container/package.d M std/container/rbtree.d M std/container/slist.d M std/container/util.d M std/exception.d M std/range/interfaces.d M std/range/primitives.d M win32.mak M win64.mak Log Message: ----------- Fix links Commit: 2c5294b64feaa9c3939441b9774da402688f0402 https://github.com/D-Programming-Language/phobos/commit/2c5294b64feaa9c3939441b9774da402688f0402 Author: Vladimir Panteleev <thecybershadow@gmail.com> Date: 2015-02-17 (Tue, 17 Feb 2015) Changed paths: M index.d M posix.mak M std/algorithm/comparison.d M std/algorithm/iteration.d M std/algorithm/mutation.d M std/algorithm/searching.d M std/algorithm/setops.d M std/algorithm/sorting.d M std/container/array.d M std/container/binaryheap.d M std/container/dlist.d M std/container/package.d M std/container/rbtree.d M std/container/slist.d M std/container/util.d M std/exception.d M std/range/interfaces.d M std/range/primitives.d M win32.mak M win64.mak Log Message: ----------- Merge pull request #2989 from andralex/posix.mak Fix name of package documentation: std_xyz_package.html -> std_xyz.html Commit: 5dd6df0bd3288a4ffd14464dc76797158af8c07a https://github.com/D-Programming-Language/phobos/commit/5dd6df0bd3288a4ffd14464dc76797158af8c07a Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/algorithm/package.d M std/algorithm/setops.d M std/algorithm/sorting.d M std/functional.d M std/range/interfaces.d M std/typecons.d Log Message: ----------- Merge pull request #2996 from quickfur/std_algo_cleanup std.algorithm cleanup Commit: 955800a4b5595dc42360d92ef7013c87c1563049 https://github.com/D-Programming-Language/phobos/commit/955800a4b5595dc42360d92ef7013c87c1563049 Author: Walter Bright <walter@walterbright.com> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/outbuffer.d Log Message: ----------- add writef and writefln to std.outbuffer Commit: dd00f64095750072e8660749e0f9c965f1e26ef7 https://github.com/D-Programming-Language/phobos/commit/dd00f64095750072e8660749e0f9c965f1e26ef7 Author: Walter Bright <walter@walterbright.com> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/algorithm/searching.d Log Message: ----------- Merge pull request #2986 from andralex/master skipOver: no unnecessary decoding Commit: cf60e6a6393387f863a9adf1dd0cfb92d6d5f960 https://github.com/D-Programming-Language/phobos/commit/cf60e6a6393387f863a9adf1dd0cfb92d6d5f960 Author: Andrei Alexandrescu <andrei@erdani.com> Date: 2015-02-16 (Mon, 16 Feb 2015) Changed paths: M std/outbuffer.d Log Message: ----------- Merge pull request #2983 from WalterBright/outbuffer-writef add writef and writefln to std.outbuffer Commit: 608ff995afe40fcf7aa147af2c4b758a14a5784c https://github.com/D-Programming-Language/phobos/commit/608ff995afe40fcf7aa147af2c4b758a14a5784c Author: Kevin Brogan <kevin@brogan.ca> Date: 2015-02-17 (Tue, 17 Feb 2015) Changed paths: M std/csv.d Log Message: ----------- Fix failing unittest due to double imprecision. Modified double comparison from a == b to abs(a-b) < epsilon Commit: 1901f5badbc93851aeec89a6e5a06385fe37d58d https://github.com/D-Programming-Language/phobos/commit/1901f5badbc93851aeec89a6e5a06385fe37d58d Author: k-hara <k.hara.pg@gmail.com> Date: 2015-02-18 (Wed, 18 Feb 2015) Changed paths: M std/experimental/logger/multilogger.d Log Message: ----------- Fix imports Commit: 320a7b4bd3bdd009162a17ed3fc67665f698e106 https://github.com/D-Programming-Language/phobos/commit/320a7b4bd3bdd009162a17ed3fc67665f698e106 Author: Robert Schadek <robert.schadek@informatik.uni-oldenburg.de> Date: 2015-02-17 (Tue, 17 Feb 2015) Changed paths: M std/experimental/logger/multilogger.d Log Message: ----------- Merge pull request #3000 from 9rnsr/fix12359 Fix imports Commit: 7a9920a4d5f4448edc59226d692b995228893c5c https://github.com/D-Programming-Language/phobos/commit/7a9920a4d5f4448edc59226d692b995228893c5c Author: Ulrich Kuettler <kuettler@gmail.com> Date: 2015-02-18 (Wed, 18 Feb 2015) Changed paths: M std/algorithm/package.d Log Message: ----------- Remove reference entry for template that got moved Commit: 1ff5a14042d6f8bdf7a490740289f413db67390f https://github.com/D-Programming-Language/phobos/commit/1ff5a14042d6f8bdf7a490740289f413db67390f Author: Robert Schadek <robert.schadek@informatik.uni-oldenburg.de> Date: 2015-02-19 (Thu, 19 Feb 2015) Changed paths: M std/csv.d Log Message: ----------- Merge pull request #2998 from KevinBrogan/KevinBrogan-std.csv-patch Fix std.csv assertion (float comparison for equal) Commit: 398a1e9d2ed1be731a0c4cbd8b7a734e2aebaedc https://github.com/D-Programming-Language/phobos/commit/398a1e9d2ed1be731a0c4cbd8b7a734e2aebaedc Author: Brad Roberts <braddr@puremagic.com> Date: 2015-02-19 (Thu, 19 Feb 2015) Changed paths: M std/algorithm/package.d Log Message: ----------- Merge pull request #3004 from kuettler/remove_forward_ddoc Remove reference entry for template that got moved Commit: d076b6e72b80f6ab6fd1b6de6e71d34920f0006b https://github.com/D-Programming-Language/phobos/commit/d076b6e72b80f6ab6fd1b6de6e71d34920f0006b Author: Ulrich Kuettler <kuettler@gmail.com> Date: 2015-02-19 (Thu, 19 Feb 2015) Changed paths: M std/functional.d Log Message: ----------- Add a simple table for functions to the functional module Fine points Sort table of functions Commit: 767e8d164b20fb41eaa263925172d2f51a8aecd4 https://github.com/D-Programming-Language/phobos/commit/767e8d164b20fb41eaa263925172d2f51a8aecd4 Author: Ilya Yaroshenko <ilyayaroshenko@gmail.com> Date: 2015-02-20 (Fri, 20 Feb 2015) Changed paths: M std/random.d Log Message: ----------- fix docs Commit: cd3784397474ff37c38c75c5ff2383f9b498290f https://github.com/D-Programming-Language/phobos/commit/cd3784397474ff37c38c75c5ff2383f9b498290f Author: Robert Schadek <robert.schadek@informatik.uni-oldenburg.de> Date: 2015-02-20 (Fri, 20 Feb 2015) Changed paths: M std/random.d Log Message: ----------- Merge pull request #3010 from 9il/patch-1 fix docs ) to $(RPAREN) Commit: 94d1590862a3d1f05f9d9fedb452b2bc0adbe6ac https://github.com/D-Programming-Language/phobos/commit/94d1590862a3d1f05f9d9fedb452b2bc0adbe6ac Author: Brad Roberts <braddr@puremagic.com> Date: 2015-02-20 (Fri, 20 Feb 2015) Changed paths: M std/functional.d Log Message: ----------- Merge pull request #3008 from kuettler/add_functional_toc Add a simple table for functions to the functional module Compare: https://github.com/D-Programming-Language/phobos/compare/f4a8f62aae86...94d1590862a3 |
Copyright © 1999-2021 by the D Language Foundation