https://github.com/JuliaLang/julia

sort by:
Revision Author Date Message Commit Date
191e367 initialise basic linux VSTS pipeline 14 August 2018, 21:04:30 UTC
686ffdb Keep parametric information when constructing a SparseMatrixCSC from a SparseMatrixCSC. (#28642) 14 August 2018, 18:30:39 UTC
3d8091f fixes issue 28553, improves error message for missing packages (#28555) 14 August 2018, 17:21:05 UTC
3fe2d08 implement the REPL replayer on Windows (#28608) 14 August 2018, 10:02:25 UTC
2fcad41 fix print docstring (#28609) 13 August 2018, 22:37:43 UTC
decee65 fix various `printstyled` calls (#28586) 13 August 2018, 22:37:00 UTC
883c8a3 Fix typo (#28594) Add a punctuation 13 August 2018, 13:59:23 UTC
d15b091 Doc IndexLinear and IndexCartesian (#28476) * Doc IndexLinear and IndexCartesian 13 August 2018, 13:16:08 UTC
0846eb5 Fix #28619, logabsdet for singular matrices (#28620) 13 August 2018, 07:04:42 UTC
d7e4584 fix #28576, parsing `?` at end of input in conditional expression 12 August 2018, 10:37:54 UTC
04f4884 Fix vec of adjoint vector (#28568) 12 August 2018, 07:44:47 UTC
7cb8531 update link to ConEmu terminal (#28578) 11 August 2018, 15:24:00 UTC
0d050ac Added docs for external profiling (#28538) 11 August 2018, 15:00:30 UTC
3d6a26d Remove old version information from README (#28533) 11 August 2018, 13:20:18 UTC
7c9383f Autogenerate documented REPL banner (#28520) * Update documented REPL banner for 1.0 11 August 2018, 10:43:52 UTC
e7d15d4 Bump Documenter to v0.19.3 (#28559) 11 August 2018, 10:18:32 UTC
f8d82cc Update LLVM version in README. Fix #28529 (#28530) * Update LLVM version in README. Fix #28529 README was mentioning version 3.9 + patches, now it's version 6.0. * Add link to patches for LLVM in README 10 August 2018, 14:55:04 UTC
53d2e7c Documentation introduction fixed for 1.0 (#28548) 10 August 2018, 14:39:03 UTC
c227a6c Set VERSION to 1.1.0-DEV (#28532) 10 August 2018, 14:26:09 UTC
5d4eaca Set VERSION to 1.0.0 08 August 2018, 20:58:54 UTC
59977eb fix #28527, error needed for `using A.b` where b is not a module 08 August 2018, 18:52:33 UTC
f463944 Fix empty parens in header if git information is missing 08 August 2018, 15:24:08 UTC
cb52390 Add peek/mark/etc. functions for AbstractPipe types Fixes #27550 08 August 2018, 13:20:43 UTC
0eb7be2 tests: fix issues with spawn tests 08 August 2018, 13:20:43 UTC
239f903 inference: fix recursion limit heuristic There's several related issues here: 1. Covariant kinds provide no meaningful information for the type size limit heuristic. We should be just ignoring those and walking through to the actual structural information of any real substance. This seems to also make type_more_complex, _limit_type_size, and is_derived_type more similar, which is probably always preferable. 2. Allowing type intersection to revise our type later can cause it to reintroduce complexity (constraints) according to our metric, while we want to only move up the type-hierarchy, which can allow us to accidentally escape from the limit. So if we've limited the type, we don't want to use a different type that was derived by type-intersection and may not have our limits applied anymore. 3. Inside `is_derived_type`, the var field of a UnionAll should not increase the nesting depth, since `T<:(Ref{S} where S<:Any)`, should observe the same depth as `{S<:Any, T<:Ref{S}}`. fix #26665 08 August 2018, 12:43:20 UTC
da30586 Remove excess information from the opening Julia banner After discussion with Jeff and Viral, the tagline "A fresh approach to technical computing" seems to have become somewhat stale. We additionally decided that it was unnecessary to show the build timestamp in the initial banner, as well as `Sys.MACHINE` as both are available within `versioninfo()` which is what we want to encourage users to report anyway. Jeff wanted to keep the build date itself though, and as that's more minimal I think it's a good compromise. 08 August 2018, 12:05:16 UTC
d038f2f Move eqsim to prec-comparison Fixes #28510 07 August 2018, 20:49:56 UTC
622772d Remove start/next/done remnants 07 August 2018, 19:48:07 UTC
e86c5b6 Remove LibGit2 abuse of old iteration protocol This can now just be a stateful iterator, like the rest of them in LibGit2. 07 August 2018, 19:48:07 UTC
9d85f7f remove vestigial uppercase standard stream names 07 August 2018, 18:08:44 UTC
ed0bf05 Clean up exports list, removing undefined identifiers: * ParseError was deprecate_moved, but was not removed from exports list. * Remove old logging function exports -- these were deprecated to their macros * Shuffle was deprecate_move'd to Random 07 August 2018, 18:05:21 UTC
f92a55a Set VERSION to 1.0.0-rc1 (#28489) 07 August 2018, 16:29:47 UTC
b815ac5 add NEWS about OldPkg moving out of the julia repo 07 August 2018, 16:21:26 UTC
45d26da move 0.7.0 NEWS to HISTORY 07 August 2018, 16:21:26 UTC
06dad95 update docstring for qr (#28446) * update docstring for qr Explain in docstring how to obtain both the thin and full factors. This is related to issue https://github.com/JuliaLang/julia/issues/27397. * further improvement/clarification 07 August 2018, 16:19:29 UTC
cc29668 Remove at-pure from manual (#28496) 07 August 2018, 15:49:06 UTC
16ba04f Fix product of iterators without integer state (#28498) 07 August 2018, 15:48:38 UTC
5a456f3 Pkg REPLMode: fix `add X@v` (#28492) 07 August 2018, 12:39:16 UTC
6575e12 fix a few more deprecation-related items 07 August 2018, 09:58:51 UTC
60cf688 Avoid excessive output from test errors (#28184) * Don't print repr of exception when backtrace is also printed in test error output. Save decorated repr of exception instead of full undecorated repr * Fix handling of limited output in logging 07 August 2018, 08:55:09 UTC
2990f0e Remove a couple extra deprecations (#28490) * Remove open(cmd) deprecation leftovers * Remove incorrect comment in show.jl We still parse `$=`, it just doesn't mean `xor=` anymore, so printing shouldn't be changed. * Uncomment a couple tests because the comments told me to * Fix isdefined tfunc after deprecation removal 07 August 2018, 06:58:40 UTC
cf1275b remove nearly all remaining deprecations (#28486) * Fix at-inferred with a single dot-broadcast op * Mark .op type-inference-based completion of method signatures as broken REPLCompletions allows tab-completion to show the possible signatures of a given function when in the midst of writing its arguments. It uses inference to determine the possible types of the already-written arguments, subsetting the possible signatures. With the removal of `.op` as a function, it is no longer able to infer these types and thus no longer subsets the signatures as previously expected. The failure mode is very graceful here -- it just assumes `Any` and shows more signatures. This can be re-implemented later 07 August 2018, 06:57:54 UTC
f6e515b Fix underlines in cmd printing (#28482) Fixes #25589 07 August 2018, 01:01:52 UTC
ba209d5 Fixed long stacktrace printing (#28453) 07 August 2018, 00:10:26 UTC
27f7a74 Turn some syntax deprecations into errors All for assignments in weird places 07 August 2018, 00:02:32 UTC
e1e0bd2 Remove deprecated command line arguments precompiled, compilecache, machinefile 07 August 2018, 00:02:32 UTC
a37e090 Small tweak to vector handling in GC lowering (#28485) GEPs can make vectors out of regular pointers if the offset is a vector. Fixes an assertion noticed in #28474. 06 August 2018, 23:42:25 UTC
e76b005 Remove checks in tril, triu, and diag (#28480) * Stop throwing for out of bounds diagonals in tril, triu and diag defined in LinearAlgebra * Remove checks from tril, triu and diag in SparseArrays 06 August 2018, 21:35:35 UTC
ebfa1d5 remove more deprecations (#28457) 06 August 2018, 20:08:07 UTC
3c2c811 completely remove OldPkg (#28477) 06 August 2018, 19:08:56 UTC
651a727 Work around invalid register errors with 64-bit Windows (#28449) Adding `-fno-asynchronous-unwind-tables` to the C compiler flags passed to OpenBLAS works around errors claiming an invalid register for `.seh_savexmm`. We've been running into this on the 64-bit Windows buildbots. See discussion in https://github.com/xianyi/OpenBLAS/issues/1708. 06 August 2018, 18:44:25 UTC
8bfc73a Fix legality check in SROA (#28478) The legality check was using use counts after `finish(compact)` got to delete, which made them inaccurate. Instead, take a copy of the use counts before. Additionally, ignore any uses that got deleted during `finish(compact)`. Fixes #28444. 06 August 2018, 18:34:02 UTC
e3bc48d remove deprecation about __precompile__(true) (#28459) 06 August 2018, 16:03:57 UTC
dcfa848 Remove SparseArrays deprecations. (#28469) 06 August 2018, 16:02:13 UTC
7d651aa Remove deprecation of DevNull and rename DevNullStream to DevNull, fix #26132. (#28473) 06 August 2018, 16:01:46 UTC
4fce960 Fix race condition when building LLVM for Windows (#28433) `llvm-tblgen` and `llvm-config` both try to build in the same NATIVE directory and end up stomping on each other. Co-authored-by: Valentin Churavy <vchuravy@gmail.com> 06 August 2018, 14:07:27 UTC
717ff90 Fix mix-type arithmetic detection in umin/max expansion (#28465) Pointers can have different types. For these, a simple bitcast suffices rather than going through inttoptr. Fixes #28464 06 August 2018, 14:06:40 UTC
f5a0b03 [GCLowering] Expand support for vectors of pointers (#28455) Most of the support was already there, but it was mostly unexercised. The recent activation of the SLP vectorizer made these patterns appear in the IR, so fixup the support. Fixes #28445 06 August 2018, 14:06:16 UTC
00d6f72 remove LinearAlgebra deprecations (#28456) * Remove LinearAlgebra deprecations. * update variable names 06 August 2018, 13:26:39 UTC
2b2b4fd Remove tricky array/broadcasting/indexing deprecations (#28458) * Remove scalar .= deprecation * Remove to_index(::Bool) deprecation * broadcasting now falls back to iteration (fixes #23197, fixes #23746) 06 August 2018, 12:18:27 UTC
7b140ee delete OldPkg (#27930) 06 August 2018, 10:03:12 UTC
cae40f2 Remove many stdlib deprecations (#28450) * Remove Dates deprecations. * Remove Base64 deprecations. * Remove CRC32c deprecations. * Remove DelimitedFiles deprecations. * Remove FileWatching deprecations. * Remove InteractiveUtils deprecations. * Remove Libdl deprecations. * Remove Markdown deprecations. * Remove Mmap deprecations. * Remove Printf deprecations. * Remove Profile deprecations. * Remove REPL deprecations. * Remove Serialization deprecations. * Remove SharedArrays deprecations. * Remove Sockets deprecations. * Remove Statistics deprecations. 06 August 2018, 09:03:26 UTC
f7d9a8b Remove LibGit2 deprecations. (#28460) 06 August 2018, 07:42:03 UTC
5d43217 Merge pull request #28443 from JuliaLang/kc/bump_pkg Bump Pkg 05 August 2018, 20:49:57 UTC
696700f Avoid possible shredding of passed cred on reject (#28448) 05 August 2018, 10:50:37 UTC
e4d933d remove more deprecations (#28434) 05 August 2018, 08:25:44 UTC
0f36c69 specialized solvers for tranpose/adjoint of triangular sparse matrices (#28242) * specialized linear solvers for tranpose/adjoint of triangular sparse matrices * added specific tests for sparse triangular solving 05 August 2018, 06:54:30 UTC
fee0392 increase isolation of test 05 August 2018, 06:50:12 UTC
e0876d2 Define `size` for SVD (#28439) * Define `size` for SVD Closes https://github.com/JuliaLang/julia/issues/28438. And first PR! * add test to 3-arg `ldiv!` on `SVD` which calls `size` * github pampering 05 August 2018, 06:32:18 UTC
dd248bf Shred overwritten cached credentials (#28436) 04 August 2018, 15:27:31 UTC
d5890e6 add licenses to files 04 August 2018, 15:09:55 UTC
afbba1a update precompilation for Pkg 04 August 2018, 15:09:55 UTC
43a0285 remove ability to give a git revision to devved packages (#581) * remove ability to give a git revision to devved packages * wip 04 August 2018, 15:09:54 UTC
d738134 only look for Project files in installed (#539) 04 August 2018, 15:09:54 UTC
eed9ea7 rename CommandError to PkgError (#475) 04 August 2018, 15:09:53 UTC
e804d11 allow using a path kword arg to PackageSpec (#580) 04 August 2018, 09:53:39 UTC
f647d70 add --shared option for activate (#558) 04 August 2018, 09:53:39 UTC
ff586ed Propagate track-allocation option to test process. (#579) 04 August 2018, 09:53:39 UTC
917b1e7 Also collect manifest entries from target deps when testing / building. (#572) 04 August 2018, 09:53:38 UTC
855ea64 ignore julia in test/REQUIRE (#578) 04 August 2018, 09:53:38 UTC
4b43e63 stop using PkgError (#577) 04 August 2018, 09:53:38 UTC
e5da183 use full path for local paths when determining package name (#571) 04 August 2018, 09:53:38 UTC
94eec9b Change devdir kwarg to shared in REPL mode, add the kwarg to the API (#565) 04 August 2018, 09:53:38 UTC
f4d0411 Fix parser (lexer) (#553) * Fix parser * Add test for REPL `?<command>` help syntax 04 August 2018, 09:53:38 UTC
484deaf rename Uncurated to General (#564) 04 August 2018, 09:53:38 UTC
fcb1e4f Refactor `activate` to avoid complexity in the main method (#559) 04 August 2018, 09:53:38 UTC
0ecaf2d Replace depots()[1] with depots1() where depots1 throws (#563) a more descriptive error, instead of a BoundsError, in the case where DEPOT_PATH is empty. 04 August 2018, 09:53:38 UTC
85d2a7e Fix `instantiate` error message (#560) 04 August 2018, 09:53:38 UTC
5b6fbb0 Refactor some REPL issues (#552) * Refactor: APIOptions should be a dictionary * Fix `do_activate!` interface * Update tests: APIOptions is a dictionary * Allow more flexibility for REPL `do_<>` functions 04 August 2018, 09:53:38 UTC
e9e320b Make `Pkg.activate(path)` behave like `pkg> activate path`. (#543) 04 August 2018, 09:53:38 UTC
3e88964 [RFC] Make command spec more declarative (#509) * Refactor `REPLMode.parse_quotes` 04 August 2018, 09:53:38 UTC
1dfc4d1 Cache credentials on Pkg up (#28437) 04 August 2018, 07:20:02 UTC
a2149f8 remove runtime system deprecations (#28380) 04 August 2018, 00:41:49 UTC
68cc868 fully ignore assignments to underscore symbols closes #9343 fixes #20931 04 August 2018, 00:40:31 UTC
0bd3467 parse assignment as keyword args inside indexing fixes #25631 04 August 2018, 00:40:31 UTC
f08f3b6 remove most front-end deprecations also disable "local declared twice" error This permits declaring a loop variable as local inside the loop, which was used during 0.7 to get the new scope behavior. 04 August 2018, 00:40:31 UTC
a451801 fix pkg3 docs typo (#28422) * Update index.md 03 August 2018, 21:16:22 UTC
785b82d disable FileWatching tests that fail on mac (#26725) (#28411) 03 August 2018, 20:24:52 UTC
23554da Merge pull request #28427 from JuliaLang/ksh/docroundzero Docs for RoundFromZero and some xrefs 03 August 2018, 18:38:39 UTC
ecd80ca Docs for RoundFromZero and some xrefs 03 August 2018, 16:32:48 UTC
back to top