https://github.com/JuliaLang/julia

sort by:
Revision Author Date Message Commit Date
2e88f4c Tag 0.3.0-rc3, hopefully this becomes final 10 August 2014, 02:54:20 UTC
6c7f35b Merge pull request #7846 from tkelman/test-defaults RFC: make running the test suite slightly easier 10 August 2014, 02:32:35 UTC
cc0ac96 allow giving a list of tests in one string such as Base.runtests("file numbers parallel") 10 August 2014, 02:28:32 UTC
bc704e1 Do something about #7306 10 August 2014, 02:19:46 UTC
053183a add test list and numcores optional inputs to Base.runtests 10 August 2014, 01:57:04 UTC
e6931f5 add Base.runtests() 10 August 2014, 01:57:04 UTC
74e5eb7 make running the test suite slightly easier - default to running all tests if no command-line arguments provided - cd to the test directory, then back when finished - use at most half of the cpu cores when no command-line arguments given 10 August 2014, 01:57:04 UTC
c23511b On versions of OSX < 10.10 fix compilation On OSX < 10.10, we need to check for the existance of MAC_OS_X_VERSION_10_10 at all 10 August 2014, 01:12:50 UTC
7ebd91d Merge pull request #7937 from tkelman/crlf-test-fix workaround trouble from fix to #7845 with line endings 09 August 2014, 23:44:01 UTC
9bcb604 workaround trouble from fix to #7845 with line endings for any individuals who happen to check out test/lineedit.jl with a poorly configured windows git, or make changes to the file in an antique editor 09 August 2014, 22:04:20 UTC
41b885c Substituting "%7E" for "~" fixes a linkcheck error on my machine Specifically, the following behavior seems a little odd: ``` julia> using Requests julia> get("http://math.mit.edu/%7Estevenj/Julia-cheatsheet.pdf") Response(403 Forbidden, 10 Headers, 309 Bytes in Body) julia> get("http://math.mit.edu/~stevenj/Julia-cheatsheet.pdf") Response(200 OK, 12 Headers, 85999 Bytes in Body) ``` 09 August 2014, 17:57:22 UTC
003d470 Update README.windows.md 09 August 2014, 16:31:21 UTC
ac2c30b fix #7932 09 August 2014, 16:11:07 UTC
afb7f4c Merge pull request #7934 from tkelman/fix7933 fix #7933, full(Symmetric(A)) mutates A 09 August 2014, 15:43:45 UTC
d14ff90 manual typos 09 August 2014, 14:11:09 UTC
5674e9e manual typo 09 August 2014, 14:08:34 UTC
fc8b883 fix documentation of Unicode variable names to be more up-to-date 09 August 2014, 13:09:51 UTC
7db6646 document REPL LaTeX substitutions 09 August 2014, 12:47:57 UTC
0398782 fix #7933, full(Symmetric(A)) mutates A 09 August 2014, 11:45:50 UTC
793af3f Merge pull request #7923 from stevengj/calldecl fix #7921 (show of function-declaration expression for operators) 09 August 2014, 03:30:02 UTC
7edabb2 Merge pull request #7929 from wlbksy/patch-2 update Chinese doc's link for latest 09 August 2014, 03:21:19 UTC
43272d2 update Chinese doc's link for latest 09 August 2014, 03:14:56 UTC
6dad974 Merge pull request #7925 from ArchRobison/adr/perftest Add performance tests for @simd. 09 August 2014, 03:14:16 UTC
a58babf fix #7927 09 August 2014, 00:36:04 UTC
6f44216 Add performance tests for @simd. 08 August 2014, 22:28:33 UTC
33effcf fix #7921 (show of function-declaration expression for operators) 08 August 2014, 21:32:44 UTC
10117ca Merge pull request #7912 from JuliaLang/kf/7911 LLVM Patch to fix #7911 08 August 2014, 18:04:08 UTC
fda850b Revert "Boundschecks for searchsorted & remove step(r::Range)==0 tests" This reverts commit 10e51e5bcfb35a3a159ecf4934c3f074900f844e. Originally merged by 2d5dbf35b63e0fae9a741184bc27c53493d7474c, this is incorrect in a number of ways. The searchsorted* methods with explicit lo and hi indices are an not part of the public API for these functions. Thus, the correctness of the bounds given don't need to be checked – that is up to the caller. If we decide to expose the ability to call searchsorted* with explicit start and end indices, there should be a better API for that which doesn't require passing an Ordering object and which checks bounds. In particular, this broke the old behavior of searchsorted when the value that's being searched for is not in the array. Fix #7916. Also added somes tests to make sure this doesn't regress again. At the time this was committed, I think that ranges could actually have a zero step – there was a reason for that check to be there. This may no longer be the case, but since it's cheap to check, we may as well handle it correctly and decouple the correctness of the sorting functions from a detail of the range implementation. Conflicts: base/sort.jl 08 August 2014, 14:33:28 UTC
07b75b9 Update packages.rst Add mention of using 'https' protocol instead of 'git'. Fixes #5523 08 August 2014, 11:49:03 UTC
33b7aec Add para 08 August 2014, 11:47:36 UTC
b7bce48 LLVM Patch to fix #7911 08 August 2014, 06:41:57 UTC
6bd8b56 Fix #7897 08 August 2014, 05:34:51 UTC
9ee60bf Merge pull request #7853 from JuliaLang/anj/big Let big use convert for AbstractArrays instead of the vectorize macro 08 August 2014, 04:03:45 UTC
c59216b Merge pull request #7892 from mbauman/fix-show-test The macro (at)test_repr wasn't testing 08 August 2014, 03:56:30 UTC
97c7043 Merge pull request #7900 from quinnj/master Change how StepRange gets its 'unit' in creating an empty range 08 August 2014, 03:56:08 UTC
bfd58b2 minor edits, and a missing `const` 08 August 2014, 03:49:32 UTC
c47cef0 fix #6457, uses of fixed-precision constants in complex functions 08 August 2014, 03:48:34 UTC
31eb8d4 even more serializer optimizations. this breaks the serialization format. ref #7893 - remove unnecessary extra serialization of length(x.names) - UTF16String and UTF32String now have compact type tags - don't serialize () for types with no parameters 08 August 2014, 01:58:39 UTC
32d58f5 Eliminate OSX debugging stuff in travis recipe 08 August 2014, 00:54:32 UTC
c151536 Merge pull request #7791 from JuliaLang/sf/globalwarmingwhatsthat Enable testing of OSX on Travis 08 August 2014, 00:16:00 UTC
335c750 Fix #7904 08 August 2014, 00:09:22 UTC
75ec2a3 Fix #7845 07 August 2014, 22:58:45 UTC
0ec28c9 Hide unknown functions from the system image This happens for jlcall_ functions that don't get debug info emmited for on linux (since they are 0 lines long). This is for #7895. There remains a problem with LLVM 3.5 where it won't find some julia functions unless the stack protector attribute is set on them. 07 August 2014, 22:02:29 UTC
04034ca Merge pull request #7883 from JuliaLang/kf/7868 Fix #7868 07 August 2014, 21:43:43 UTC
ee79b40 Change how StepRange gets its 'unit' in creating an empty range 07 August 2014, 21:28:07 UTC
a537bd8 Merge pull request #7899 from JuliaLang/anj/gelsy Fix initialization of vector of pivoting information in gelsy! 07 August 2014, 21:25:17 UTC
043b683 some serializer optimizations. slightly helps #7893 mostly this avoids memory allocation from Module fullname()s, and boxing Ints. this is backwards-compatible for *reading* old files, but written data will not be usable by older julias. 07 August 2014, 21:19:18 UTC
6b5d8bd Fix initialization of vector of pivoting information in gelsy! 07 August 2014, 20:54:48 UTC
45b0106 Fix #7868 07 August 2014, 19:59:35 UTC
fc56f24 avoid an extra tuple allocation in deserializing 1d arrays. slightly helps #7893 07 August 2014, 19:33:54 UTC
b0583fb Merge pull request #7896 from JuliaLang/anj/revert Revert "Merge pull request #7888 from JuliaLang/teh/qrldiv" 07 August 2014, 18:53:44 UTC
14a3b55 Merge pull request #7894 from i2000s/master Fixed 2 typos in FAQ of the manual. 07 August 2014, 18:52:38 UTC
1b0148e Revert "Merge pull request #7888 from JuliaLang/teh/qrldiv" This reverts commit 80407d51003228ddeed49a234f976414c4eba4a6, reversing changes made to 0816e99301bcc456a090b0064ece7a74c2cb708f. 07 August 2014, 17:48:43 UTC
6fc656e Fixed 2 typos in FAQ. 07 August 2014, 16:56:34 UTC
85b760a Merge pull request #7875 from StephenVavasis/patch-5 first use of omitted-name syntax 07 August 2014, 16:46:37 UTC
1f204bf The macro (at)test_repr wasn't testing This re-enables testing of representations of Exprs. Instead of testing the parsed form against the original, the (at)test_repr macro was comparing the parsed form against the re-parsed form. It was effectively testing the stability of `show` instead of the actual parsing. Only two tests failed upon fixing the macro to test the re-parsed form against the explicitly written string. One was simply due to empty lines that are not in the parsed representation. The other is `w = (x = y) = z`, which displays simply as `w = x = y = z`. The Expr structure of the two is indeed different, but the tested form is an invalid assignment location and of dubious utility. Fixes #7879 07 August 2014, 16:46:12 UTC
6e2dc79 Merge pull request #7889 from JuliaLang/in/d3 Removed D3 from LICENCE.md 07 August 2014, 16:38:43 UTC
b21c386 Merge pull request #7882 from JuliaLang/dcj/gotobug Fix goto/label in macros invoked from another module. 07 August 2014, 16:28:23 UTC
d2ba965 Merge pull request #7880 from mbauman/show-function-prec Fix show(::Expr) precedence of function calls 07 August 2014, 16:25:00 UTC
80407d5 Merge pull request #7888 from JuliaLang/teh/qrldiv Speed up A_ldiv_B! for QR factorizations 07 August 2014, 13:12:24 UTC
0425e37 Removed D3 from LICENCE.md I can't find any traces of D3 in the repository or downloaded dependencies. 07 August 2014, 11:28:20 UTC
2d91eb1 Speed up A_ldiv_B! for QR factorizations The major benefit is from eliminating calls to `cat`, however I noticed that the type instability of `A[:Q]` was also a noteworthy problem. This essentially doubles the performance. It will get much faster yet with faster array views (sub is now by far the major bottleneck). 07 August 2014, 09:41:31 UTC
0816e99 Fix #7857 07 August 2014, 07:55:24 UTC
665d27b Merge pull request #7885 from shashi/doc_fix Document requirements with - suffix more clearly 07 August 2014, 06:59:54 UTC
a4d030d Document requirements with - suffix more clearly 07 August 2014, 06:22:18 UTC
cb4d6cd type -> immutable Fix second issue in #7874 07 August 2014, 06:12:46 UTC
0006d81 Merge pull request #7874 from StephenVavasis/patch-4 Rational is immutable 07 August 2014, 06:09:26 UTC
e095230 Merge pull request #7881 from i2000s/master Fixed some small typos in the manual. 07 August 2014, 04:16:52 UTC
78cca5b Fix goto/label in macros invoked from another module. 07 August 2014, 04:02:37 UTC
462c715 Fix show(::Expr) precedence of function calls The shown expressions of complicated function calls and array references such as `([2] + 3)[1]` were previously shown simply as `[2] + 3[1]`. This fixes that. 07 August 2014, 03:26:52 UTC
081ce20 first use of omitted-name syntax As far as I can see, the syntax of omitting a function argument's name has not been previously introduced in the manual, so I wrote a few sentences here to introduce it. 07 August 2014, 02:38:33 UTC
4356334 Rational is immutable According to an earlier section of the manual, Rational is declared immutable (rather than 'type'). 07 August 2014, 02:28:47 UTC
3ddbaa1 Also fix llvm shlib name in ui 06 August 2014, 22:29:29 UTC
2f404c1 Fixed a typo. 06 August 2014, 22:01:47 UTC
0038e08 Fix LLVM shlib name When LLVM_VER=svn the library is named e.g. LLVM-3.6.0svn, so use LLVM_CONFIG to retrieve the version number. 06 August 2014, 19:48:29 UTC
640c0d8 Fixed a typo. 06 August 2014, 17:25:51 UTC
23185c5 Don't run tests without a config 06 August 2014, 17:02:55 UTC
e57991d Revert "Configure git on Travis for Pkg.generate() tests" This reverts commit 3563d8db736538bb9844e34ba05bbe2b7ec14566. 06 August 2014, 17:02:55 UTC
5bbee43 Merge pull request #1 from JuliaLang/master Update new commits. 06 August 2014, 16:52:45 UTC
540dac0 Start a FAQ on Cartesian documentation 06 August 2014, 16:02:28 UTC
c0638a1 Merge pull request #7863 from i2000s/master Updated the manual. 06 August 2014, 14:32:22 UTC
3563d8d Configure git on Travis for Pkg.generate() tests 06 August 2014, 12:11:06 UTC
12166dd Use config=Dict() instead of {} for Pkg.generate. Fixes #7855 06 August 2014, 09:41:59 UTC
52b2723 Merge pull request #7856 from rdmitry/master add new openSUSE repositories 06 August 2014, 09:39:03 UTC
41759b1 add openSUSE repositories 06 August 2014, 08:37:35 UTC
ea875c3 fix #7851, IntSet and negative integers 06 August 2014, 02:55:33 UTC
56e443d Tag 0.3.0-rc2 06 August 2014, 02:15:52 UTC
38c6914 Merge pull request #7852 from JuliaLang/{s,k}f/dlwalk Export jl_uv_dlopen() and jl_lookup_soname() 06 August 2014, 01:03:37 UTC
17ca2dd Correct a typo. 06 August 2014, 00:10:11 UTC
d5e6e35 Merge branch 'master' of github.com:JuliaLang/julia 05 August 2014, 21:42:59 UTC
9227fc4 make Inf == 1//0 again + tests (regression introduced in db0cd95529) 05 August 2014, 21:39:24 UTC
735c639 fix #7836, speed bump due to unreachable code 05 August 2014, 21:32:25 UTC
b7c6d0b Merge pull request #7850 from nalimilan/gitconfig Gitconfig 05 August 2014, 20:32:50 UTC
c7a9525 Export jl_uv_dlopen() and jl_lookup_soname() This so that we can define a function to find all possible libraries openable via dlopen(), rather than only finding the first openable one. 05 August 2014, 20:17:41 UTC
d617e7a Let big use convert for AsbtractArrays instead of the vectorize macro 05 August 2014, 20:14:22 UTC
b7ed001 Take git repo user name as default package author Avoids repeating the user name twice. 05 August 2014, 19:26:07 UTC
df03cd2 We shouldn't need to set a git config for Travis now 05 August 2014, 19:26:07 UTC
5ec8bf4 Allow for setting of an initial git config when creating pkg repos, used for testing 05 August 2014, 19:26:03 UTC
4d305d5 Remove typo 05 August 2014, 17:25:21 UTC
0722422 silence unused label warning in debuginfo on non-darwin systems 05 August 2014, 17:13:10 UTC
back to top