swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40

sort by:
Revision Author Date Message Commit Date
e0837d1 Set VERSION to 1.0.6-pre (#33203) 10 September 2019, 18:49:03 UTC
3af96bc Set VERSION to 1.0.5 (#33132) 09 September 2019, 19:06:53 UTC
712150c Merge pull request #33075 from JuliaLang/backports-release-1.0 Backports for 1.0.5 31 August 2019, 18:18:00 UTC
b717256 fix the fix for #32121, more named tuple macro hygiene (#32464) (cherry picked from commit 07c2ecc2e904a18e0c4feedb63368cdd96a7bb02) 28 August 2019, 20:08:47 UTC
944f84c Allow both EAUTH and ERROR for bad credential test in LibGit2 tests. (#32268) (cherry picked from commit 7bdba874581703747ae068b77e8546487b28739c) 27 August 2019, 15:22:14 UTC
5c8d8f6 Fix incorrect sign of atanh(complex(x,y)) if x == -1 (#31061) * Fix incorrect sign in atanh In the case that x==-1, we have to flip the sign of ξ. * Formatting: Add space after comma Co-Authored-By: cafaxo <cafaxo@gmail.com> * Add test * Do not drop sign of zero * Flip sign to avoid a DomainError This fixes atanh(prevfloat(-1.0) + 0im) * Test all four combinations Co-Authored-By: cafaxo <cafaxo@gmail.com> * Tests for expressions that were signed incorrectly * Use the correct type for 1 * Update doc * Update doc: Remove trailing whitespace (cherry picked from commit 66341a3806fb614ae00d4cf9016b3bed14c6986c) 27 August 2019, 15:22:14 UTC
f056e29 proper diagonal in copytri! (fix #30055) (#30066) * proper diagonal in copytri! (fix #30055) * added sprandn methods with Type * additional parameter in copytri! for diagonal * @inline copytri! to enforce constant propagation (cherry picked from commit 4be93390b26780696cd32f262ad043ee6fbdce70) 27 August 2019, 15:22:14 UTC
7ea7222 stdlib/SparseArrays: fix scalar setindex! for vector eltype (#29331) fix #29034 (cherry picked from commit 99efc9132e0cecbf10522484581fa67a2a8ccef4) 27 August 2019, 15:22:14 UTC
4b759a1 Add Float16 comparisons (#29916) * Add Float16 comparisons * Add @eval * Add union * Add != to tests (cherry picked from commit 1d3c371636e159cb47e68783e8d6ac90feaaace0) 27 August 2019, 15:22:14 UTC
736f10a Fix makefile not removing libjulia-debugon windows (#30059) (cherry picked from commit bcca2504b082ccb9dd19eb3696f9fc6e547ccfd5) 27 August 2019, 15:22:14 UTC
375fc8b avoid file ownership requirement in touch (#28819) Using `futimes` and passing NULL for the `times` parameter sets the current and access file times, but does not require file ownwership. From man page: > If times is NULL, the access and modification times are set to the current time. The caller must be the owner of the file, have permission to write the file, or be the superuser. (cherry picked from commit 3b3a16362b84c7f64b40e11dd6a296fa7a636c75) 26 August 2019, 12:11:16 UTC
36ba4f3 another improvement to closure analysis precision (#30972) helps #15276 (cherry picked from commit db76c218c59e75fa41c303110dc9c074c36e847c) (cherry picked from commit 7419f09d7281f574e689483ad189e4d9c5dabf68) 26 August 2019, 11:52:08 UTC
4dc49d8 fix #32121, macro hygiene bug in named tuples (cherry picked from commit d8798be07e24e27fbc29a6ee824f4990a7e94f39) (cherry picked from commit d128ca108d828682f4cde6601bafcbaca9e164b0) 26 August 2019, 11:52:04 UTC
be954d4 fix test for sparse matrix assignment (#32756) (cherry picked from commit 30b36364b03a8afe3c543c0a040f3611db7ae19c) 26 August 2019, 11:51:49 UTC
1005051 Implement isdiag(::Bidiagonal), add tests (#32694) (cherry picked from commit 25eb8c6940b0ec664257567e166c316107b04e23) 26 August 2019, 11:51:49 UTC
d99e79f fix generic ldiv! for CholeskyPivoted (#32593) * fix generic ldiv! for CholeskyPivoted * add back one empty line to make backport easier * don't interfere with previous tests (cherry picked from commit d0e11cf028c7d62a87b2906f5662283df87c7600) 26 August 2019, 11:51:48 UTC
31227f9 [Statistics] fix type determination in corm (#32271) * [Statistics] fix type determination in corm * remove obsolete typeof * use first element(s) for type initialization * add test for inhomogeneous data and for overflow * fix test with NaN (cherry picked from commit a8a567e72b669525dc4d3a38af275fe042f44a42) 26 August 2019, 11:51:46 UTC
95f4f69 Fix #32579 - Issue in typeconstraint accumulation (#32605) The bug here is a bit subtle, but perhaps best illustrated with the included test case: ``` function f32579(x::Int64, b::Bool) if b x = nothing end if isa(x, Int64) y = x else y = x end if isa(y, Nothing) z = y else z = y end return z === nothing end ``` The code just after SSA conversion looks like: ``` 2 1 ─ goto #3 if not _3 3 2 ─ %2 = Main.nothing::Core.Compiler.Const(nothing, false) 5 3 ┄ %3 = φ (#2 => %2, #1 => _2)::Union{Nothing, Int64} │ %4 = (%3 isa Main.Int64)::Bool └── goto #5 if not %4 6 4 ─ %6 = π (%3, Int64) └── goto #6 8 5 ─ %8 = π (%3, Nothing) 10 6 ┄ %9 = φ (#4 => %6, #5 => %8)::Union{Nothing, Int64} │ %10 = (%9 isa Main.Nothing)::Bool └── goto #8 if not %10 11 7 ─ %12 = π (%9, Nothing) └── goto #9 13 8 ─ %14 = π (%9, Int64) 15 9 ┄ %15 = φ (#7 => %12, #8 => %14)::Union{Nothing, Int64} │ %16 = (%15 === Main.nothing)::Bool └── return %16 ``` Now, we have special code in SROA (despite it not really being an SROA transform) that looks at `===` and replaces it by a nest of phis of booleans. The reasoning for this transform is that it eliminates a use of a value where we only care about the type and not the content, thus making it more likely that the value will subsequently be eligible for SROA. In addition, while it goes along resolving which values feed into any particular phi, it accumulates and type conditions it encounters along the way. Thus in the example above, something like the following happens: - We look at %14, which πs to %9 with an Int64 constraint, so we only consider the #4 predecessor for %9 (due to the constraint), until we get to %3, where we again only consider the #1 predecessor, where we find the argument (of type Int64) and conclude the result is always false - Now we pop the next item of the stack from our original phi, look at %12, which πs to %9 with a Nothing constraint. At this point we used to terminate the search because we already looked at %9. However, crucially, we looked at %9 only with an Int64 constraint, so we missed the fact that `nothing` was in fact a possible value for this phi. The result was a missing entry in the generated phi node: ``` 1 ─ goto #3 if not b 2 ─ %2 = Main.nothing::Core.Compiler.Const(nothing, false) 3 ┄ %3 = φ (#1 => false)::Bool │ %4 = φ (#2 => %2, #1 => _2)::Union{Nothing, Int64} │ %5 = (%4 isa Main.Int64)::Bool └── goto #5 if not %5 4 ─ %7 = π (%4, Int64) └── goto #6 5 ─ %9 = π (%4, Nothing) 6 ┄ %10 = φ (#4 => %3, #5 => %3)::Bool │ %11 = φ (#4 => %7, #5 => %9)::Union{Nothing, Int64} │ %12 = (%11 isa Main.Nothing)::Bool └── goto #8 if not %12 7 ─ goto #9 8 ─ nothing::Nothing 9 ┄ %16 = φ (#7 => %10, #8 => %10)::Bool └── return %16 ``` (note the missing #2 predecessor in phi node %3), which would result in an undefined value at runtime, though in this case LLVM would have taken advantage of that to just return 0: ``` define i8 @julia_f32579_16051(i64, i8) { top: ; @ REPL[1]:15 within `f32579' ret i8 0 } ``` Compare this now to the optimized IR with this patch: ``` 1 ─ goto #3 if not b 2 ─ %2 = Main.nothing::Core.Compiler.Const(nothing, false) 3 ┄ %3 = φ (#2 => true, #1 => false)::Bool │ %4 = φ (#2 => %2, #1 => _2)::Union{Nothing, Int64} │ %5 = (%4 isa Main.Int64)::Bool └── goto #5 if not %5 4 ─ %7 = π (%4, Int64) └── goto #6 5 ─ %9 = π (%4, Nothing) 6 ┄ %10 = φ (#4 => %3, #5 => %3)::Bool │ %11 = φ (#4 => %7, #5 => %9)::Union{Nothing, Int64} │ %12 = (%11 isa Main.Nothing)::Bool └── goto #8 if not %12 7 ─ goto #9 8 ─ nothing::Nothing 9 ┄ %16 = φ (#7 => %10, #8 => %10)::Bool └── return %16 ``` The %3 phi node has its missing entry and the generated LLVM code correctly returns `b`: ``` define i8 @julia_f32579_16112(i64, i8) { top: %2 = and i8 %1, 1 ; @ REPL[1]:15 within `f32579' ret i8 %2 } ``` (cherry picked from commit 0a12944ccaf175638ff05085e0519230fd05f157) 26 August 2019, 11:51:44 UTC
ee96a1c bug fixed in read_to_buffer (#32457) * bug fixed in read_to_buffer * added test for #32397. * switch back to original case * added torture test for long encoded string randomly laced with spaced (cherry picked from commit 4b6ab68900448a14dc214ad08611c3e09fef1ec5) 26 August 2019, 11:51:43 UTC
5497aec Fix Distributed.head_and_tail (#32431) The last return statement is currently referring to a non-existent s variable. Also fix the related doctest, even though it does not get tested at the moment. (cherry picked from commit 7bda2c1970a362fcd10e10f846d5d9774a58a53a) 26 August 2019, 11:51:42 UTC
c6d0356 codegen,tbaa: fix array isassigned tbaa information (#32356) This avoids a regression (correctness and performance) caused by #21262 where we were no longer able to fold away the isnull assertion in the case where the source also contains an explicit isassigned check. Also upgrade many other CreateInBoundsGEP calls to include the element type (NFC). (cherry picked from commit a7427aac76b496f68a10cdd59d0dffe4f0d8bede) 26 August 2019, 11:51:40 UTC
60b1fea Fix element type of -Symmetric(A) for e.g. Bool or JuMP.VariableRef, fixes #32374 (#32375) (cherry picked from commit d95841934a66530ab54229aea2ed5d80dbc8c070) 26 August 2019, 11:51:39 UTC
297bb68 Add missing test dependency on Random to Statistics (#32383) Statistics uses Random in its tests but doesn't declare it as a test dependency in its Project.toml. (cherry picked from commit f6049d6d25d720bc90d82aadae6be98bc948ef24) 26 August 2019, 11:51:38 UTC
97d6c9d Fix tryparse for invalid Chars (#32351) This fix adapts the fast path from UInt32(::Char) to the case of digit parsing. (cherry picked from commit 510db132fecd6a1ec742c0034cdf0618e863e128) 26 August 2019, 11:51:37 UTC
9faf3cf bugfix for ldiv!(D::Diagonal, B::StridedVecOrMat) and tests (#32104) (cherry picked from commit 85603e15a025b011a95e705d6a43117cb478e30a) 26 August 2019, 11:51:36 UTC
0b76f21 fixes for getindex tab-completion (#31499) * fixes for getindex tab-completion * test fix (cherry picked from commit 1eca37ed862556b6611a9de348a0147494b3a1b6) 26 August 2019, 11:51:35 UTC
3510c41 readdlm(bytearray) shouldn't modify bytearray (#32255) * readdlm(bytearray) shouldn't modify bytearray * Update stdlib/DelimitedFiles/src/DelimitedFiles.jl Co-Authored-By: Jeff Bezanson <jeff.bezanson@gmail.com> (cherry picked from commit 70382102220ac6fe6f7366b5124a40e016e41119) 26 August 2019, 11:51:33 UTC
e6b0703 relax some Diagonal tests from #31443 (#32162) (cherry picked from commit 1833a127820e0319b66ab2aece71ab001349c376) 26 August 2019, 11:51:29 UTC
06a7801 fix LibGit2 test: unknown repo now returns ERROR instead of EAUTH (#32219) (cherry picked from commit 4d7e78b7184638bcafaf8671bbd2b4d191a8492d) 26 August 2019, 11:51:29 UTC
c1cfdcb Fully qualify at-everywhere, fixes #28966. (#32144) (cherry picked from commit e6734fa5423b720329e7662c56cd7c3b5eaaebda) 26 August 2019, 11:51:27 UTC
dbbf35c Add a test for PR 32097 (#32124) This example reproduces the issue observed in issue 32092 on Julia 1.1 that was fixed by PR 32097. (cherry picked from commit 6da7aa8faf5cff49c462918a339435f4d703b999) 26 August 2019, 11:51:25 UTC
0a06275 Amend matrix * vector specialization for strided arrays (#32097) This restricts the element type of the input vector to be `<:Real` and only converts in case the promoted type is concrete. Fixes #32092. (cherry picked from commit 587cb8242f9e564b66ad5851abea2537ba4fb1de) 26 August 2019, 11:51:24 UTC
6b4cb65 Show correct format documentation (#31484) Shows the `Dates.format` table which was the behaviour in the Julia 0.6 documentation. (cherry picked from commit 826bb8b9c89363f56e13753b5bde568870984c21) 26 August 2019, 11:51:24 UTC
04ff9e5 fix `isa` fast path for typevars with lower bounds (#32040) (cherry picked from commit 7a75753ab84bb401bbcb120faa9f96d6d3042f7f) 26 August 2019, 11:51:20 UTC
636fe96 Update Mozilla CA certificate store to latest (05-15-2019) for libgit2 SSL. (cherry picked from commit b3172067fd9aed68a005971ecb86a1dedd7b2890) 26 August 2019, 11:51:20 UTC
5e6e52e Fix optind in getopt on musl libc. On exit optind points to the last non-opt argument of argv, but in the case where there are only options optind does not go beyond argc, except on musl libc, where it becomes argc + 1. (cherry picked from commit 9de07ce5694897ba2e5d61979800600d5dbd72e7) 26 August 2019, 11:51:19 UTC
2df447c Unconditionally append lib/julia to rpath, fixes #31903. (#31933) (cherry picked from commit 040a3e5a71632190a13b6bb9a5706c0cde3d6e0f) 26 August 2019, 11:51:18 UTC
21dc4aa Recover meta nodes in replace_code_newstyle (#31871) Copy meta nodes from IRCode to CodeInfo (cherry picked from commit 5168e3507ac5acf1f04f18133424d3c3fd04b3a7) 26 August 2019, 11:51:17 UTC
da925f3 avoid assertion due to overflow if Num is negative (cherry picked from commit 7cbeb3d1b0ce9816bf2fa8c2948d5b27c01285be) 26 August 2019, 11:51:12 UTC
1788b07 fix #14574, `cp` on files >2GB (#30989) (cherry picked from commit 05785f97ad6a9d5cbf0a811950cd511fb00cd45d) 26 August 2019, 11:51:10 UTC
58db74d Set VERSION to 1.0.5 prerelease (#32060) 17 May 2019, 16:47:59 UTC
38e9fb7 Set VERSION to 1.0.4 (#31985) 16 May 2019, 03:38:24 UTC
51496aa Merge pull request #30954 from JuliaLang/backport-1.0.4 Backports for 1.0.4 09 May 2019, 22:17:26 UTC
e5de459 fix #30679, call correct method for `invoke` calls in `jl_invoke` fallback (#31845) (cherry picked from commit 4e20cc2f374b9851bfd6d1ef6d08d854db8e9c98) 27 April 2019, 11:33:32 UTC
ef22206 Update Mozilla CA certificate store to latest (01-23-2019) for libgit2 SSL. (#31029) (cherry picked from commit a1377eab958eae523a298b96ac3789678489cfa9) 20 April 2019, 09:40:30 UTC
c1e1824 Fix `-`, `conj`, and `conj!` for sparse matrices with invalid entries in `nzval` (#31187) 20 April 2019, 09:40:30 UTC
11b8f59 fix #31758: out of bounds write in sparse broadcast (#31763) (cherry picked from commit c0c6f96b78b057a0c7e8360a1f6df9c4be2a900b) 20 April 2019, 09:40:30 UTC
fa22062 minor fixes in multiplication with Diagonals (#31443) * minor fixes in multiplication with Diagonals * correct rmul!(A,D), revert changes in AdjTrans(x)*D * [r/l]mul!: replace conj by adjoint, add transpose * add tests * fix typo * relax some tests, added more tests * simplify tests, strict equality (cherry picked from commit a93185fa4ea70c2dc89cbe6a0705876768e08594) 20 April 2019, 09:40:30 UTC
639de07 fix parse(ComplexF64, "inf") (cherry picked from commit c36e70b2ac257379669bd946e2cceb9a3ccbe095) 20 April 2019, 09:40:30 UTC
a92bfbe inf or nan parsing should ignore leading spaces (cherry picked from commit 65f94b35e37ec6dc268bcdc4fbabecef0c14ce45) 20 April 2019, 09:40:30 UTC
07279a3 Upgrade `libssh2` version to `1.8.2` (#31775) X-ref: https://github.com/JuliaLang/julia/pull/31745 20 April 2019, 09:40:30 UTC
1d7087d Fix 29545: Implement unaliascopy for ReinterpretArray (#30296) * Fix 29545: Implement unaliascopy for ReinterpretArray (cherry picked from commit f611b46e72c788c016933033dfadee6a9e138d47) 20 April 2019, 09:40:30 UTC
7fb5541 Fix #30006, getindex accessing fields that might not exist (#30405) * Fix #30006, range getindex accessing fields that might not exist * Add tests for #30006 (cherry picked from commit 64133f68a68a2bb52a8908bab25c32150a7e84fd) 20 April 2019, 09:40:30 UTC
ec0cf97 Pkg resolver update. 20 April 2019, 09:40:30 UTC
5313c54 Don't modify existing MDNodes in SIMDloop pass. (cherry picked from commit 0afa9a3acc0c57d71d719d204d19478fc885d5ea) 20 April 2019, 09:40:30 UTC
707fdda Fix show_vector for long offset arrays with :limit=true (#31642) Fixes #31641 (cherry picked from commit ca8abfeaf41be822550244f49f38e1ff9be3a06e) 20 April 2019, 09:40:30 UTC
9072796 Improve REPL completions (#30569) * fix internal repl completion error * fix error with broadcast method completions * method completions for broadcasted functioncalls * better broadcast funcall completions (cherry picked from commit a0474d7cc2905da1f4e83998fcf5fa8a73834488) 20 April 2019, 09:40:29 UTC
ce6b3cb build: LDFLAGS needed for FreeBSD build (#31586) also submitted to gmp-bugs@gmplib.org patch list (cherry picked from commit b446398ba8fe286ecb5f95d365d989de801cf4be) 20 April 2019, 09:40:29 UTC
a8758c4 allow chop to take an empty string (#31312) (cherry picked from commit 023c8e4b068eff37e8dcafc9fed317f25eb871b8) 20 April 2019, 09:40:29 UTC
fc773de bump MPFR to 4.0.2 (#31041) (cherry picked from commit 300a336f7d7fcfb0964190d816f7cc9c857fb065) 20 April 2019, 09:40:29 UTC
65a22aa fix #29936, precompile should not assume UnionAlls have stable addresses (#31047) (cherry picked from commit 2dd48b96b17bf57c33c2f83c7d91e31690410227) 20 April 2019, 09:40:29 UTC
0b651e0 Use XCode 8.3 for macOS on Travis (#30599) This corresponds to macOS 10.12 Sierra. XCode 8 covers El Capitan and Sierra, so if Travis is giving us XCode 8.x for x < 3, we're on El Cap. Homebrew supports only three versions of macOS at a time, which means that El Cap (10.11) is no longer support. This is likely why our Mac builds are trying to build GCC from source; a bottle might not be available. 20 April 2019, 09:40:29 UTC
2cb487a Bump Pkg to 1.0.4. 20 April 2019, 09:40:29 UTC
54a71f6 fix #30643, correctly propagate iterator traits through Stateful (#30644) 20 April 2019, 09:40:29 UTC
8ec20f4 Defensively fix patterns similar to #29983 I don't have concrete tests for these, but it looks like they all need the `is_old` predicate for what they're doing, so switch those over also while we're at it. 20 April 2019, 09:40:29 UTC
fd1f187 Fix SROA confusing new and old nodes SROA was accidentally treating a pending node as old and thus getting the wrong type when querying the predecessor. As a result it thought one of the paths was unreachable causing undefined data to be introduced on that path (generally the `1.0` that happened to already be in register). Fix #29983 20 April 2019, 09:40:29 UTC
63414f7 Fix #30006, getindex accessing fields that might not exist (#30405) * Fix #30006, range getindex accessing fields that might not exist * Add tests for #30006 20 April 2019, 09:40:29 UTC
92ecdfd Fix use counts for mutable struct SROA PR #28478 moved the computation of the use counts before the finish call. to fix #28444. However, the early parts of the finish call fixes up phi node arguments, which fail to get counted if we look at use counts before that fixup is performed. This causes #30594 where the only non-trivial use is on the backedge of the phi and would thus incorrectly fail to get accounted for. Fix that by taking the use count after phi fixup but before dce. (cherry picked from commit f8f20453c4ca7a6aeb23a189a420dbff130679ce) 20 April 2019, 09:40:29 UTC
af03147 llvm: fix target triple (#30554) broken by their move to cmake causing a switch away from the standard --host/--build autoconf fix #28046 20 April 2019, 09:40:29 UTC
347bca3 fix #30394, an unsoundness in ml_matches (#30396) This fixes a corner case where a bug is caused, counter-intuitively, by an over-estimated intersection. We have method signatures A and B, with A<B (A is a strict subtype). We have a dispatch tuple X, where X<:B and !(X<:A). However, intersection returns X for intersect(X,A). Since there appears to be a match there and A<B, ml_matches skips the match with B. The fix just requires dispatch tuples to be a subtype of a signature in order to match at all. (cherry picked from commit b167bc2afee4e6581f6c75507adb141c2b5b524c) 20 April 2019, 09:40:29 UTC
ceccebd fix #30911, bug in `deepcopy` of `UnionAll` (#30930) (cherry picked from commit c7338ea61a3948214014c950c7f895efc8a66e73) 20 April 2019, 09:40:29 UTC
f24bf8b fix `at-everywhere using` in Distributed stdlib (#30804) (cherry picked from commit 17c4b0213aabd654da132e8dbe62edee73de5672) 20 April 2019, 09:40:29 UTC
f9dddf8 fix #30792, static param constraints between positional and kw args (#30798) (cherry picked from commit 4b7415870413c2dbcdfdbb55eed9a3623576dca1) 20 April 2019, 09:40:29 UTC
48f6ea7 update macOS icons to be less transparent (#30773) (cherry picked from commit 7ed251c017f18762d11fbb00ce50c8d2829003a5) 20 April 2019, 09:40:29 UTC
083bc82 Handle :error and :invalid expressions gracefully in REPL helpmode, (#30754) fixes #22013, fixes #24871, fixes #26933, fixes #29282, fixes #29361, fixes #30348 and fixes #30506. (cherry picked from commit b8c0ec8a0a2d12533edea72749b37e6089a9d163) 20 April 2019, 09:40:29 UTC
b6b7413 SHA,tests: cleanup tempdir (#30655) (cherry picked from commit 1daf145b72bc645d0ad04978a422210749998e73) 20 April 2019, 09:40:28 UTC
2dc20f7 Add the scaled identity matrix to a random matrix to avoid getting a singular matrix (#30576) Fix #30572 (cherry picked from commit 4d8a968a87d7edd4586ee901dffa4eaa6856b966) 20 April 2019, 09:40:28 UTC
7786f78 fix `lambda-optimize-vars!` with complex assignment RHSs (#30564) fixes #30563 (cherry picked from commit 84a83ab8219e48c2ed466fe5c76b3de74039c158) 20 April 2019, 09:40:28 UTC
bca2f42 Add custom deserialize method for UmfpackLU to avoid memory leak (#30425) Fixes #15450 (cherry picked from commit 356ceeee0170e41ac109abc0841d394f5472c5e7) 20 April 2019, 09:40:28 UTC
4148b76 generalize sparse matrix slicing to integer types (#30319) (cherry picked from commit 072ad7db4a0bdfa141713ae59dbf6b0706302481) 20 April 2019, 09:40:28 UTC
0073e42 stacktrace: prevent OOB-error in sysimage lookup (#30369) Previously, with a multi-versioned system image, there might be additional entries at the end of the clone list that do not correspond to an actual method (such as jlplt thunks). Also some code cleanup for clarity. fix #28648 (cherry picked from commit e51a7075d74e86274d694b9b9f5e475b57c05439) 20 April 2019, 09:40:28 UTC
7e8d9b2 fix reinterpret for 0-dimensional arrays (#30376) (cherry picked from commit c3799003d769c434a2507ec472aa3f80f6c39317) 20 April 2019, 09:40:28 UTC
9d63c0f fix bug with max_values in union! (#30315) (cherry picked from commit f49cb42fb06492765f6320f3161e8363be5b7ada) 20 April 2019, 09:40:28 UTC
97add1c Use `JL_AArch64_crc` instead of `HWCAP_CRC32` (#30324) Closes https://github.com/JuliaLang/julia/issues/26458 (cherry picked from commit bd21aa75eb4c0e56ef870f6bffea3281c724cbb1) 20 April 2019, 09:40:28 UTC
5b7e8d9 Set VERSION to 1.0.4-pre (#30440) 19 December 2018, 09:38:05 UTC
099e826 Revert "Add test for llvmcall Function* interface" This reverts commit 8302431998a6b7e787843430b21f50bb009a617e. 18 December 2018, 01:34:45 UTC
89a0705 Revert "Set VERSION to 1.0.4-pre (#30410)" This reverts commit 5ca2b3bca3a98a141461ac6397ec9208396a2ea7. 18 December 2018, 01:34:45 UTC
5ca2b3b Set VERSION to 1.0.4-pre (#30410) 17 December 2018, 20:04:38 UTC
04330c0 Set VERSION to 1.0.3 (#30370) 16 December 2018, 21:23:09 UTC
e401c39 Bump Pkg to 1.0.3. 12 December 2018, 13:15:23 UTC
adf6977 Create new sparse matrix for R factor in sparse least square solve (#30289) instead of using a view to avoid slow fallback in back substitution. Fixes #30288 (cherry picked from commit 87c5f36257c54cb4c9f026339d07e5d6ed62a329) 12 December 2018, 13:15:23 UTC
ef03e0b `isdeprecated` does not resolve binding (#29962) (cherry picked from commit a3599e99d423353a828803a45d6087c16d4c8c78) 12 December 2018, 13:15:23 UTC
be5a92b amend typo (cherry picked from commit d7198bf0daa83d505ee2814251e3b0db56ef73e4) 12 December 2018, 13:15:23 UTC
9424e70 also skip jl_arrayunset for isbitsunion (cherry picked from commit 72fdb2991309cb1956130f8bb728e8aef9f75af9) 12 December 2018, 13:15:23 UTC
47a1618 avoid jl_arrayunset in dicts with bitstypes; add some more @inbounds (cherry picked from commit 6d94a87906675510f99d54d4b5ab3cc06ca924fa) 12 December 2018, 13:15:23 UTC
d53f1f2 fix #30122, bad type intersection involving NTuple and Vararg (#30265) (cherry picked from commit 5fd7cfb4b2c45126183f8e490349eb463d6dcfda) 12 December 2018, 13:15:23 UTC
739386a fix #30234, don't resolve bindings when tab-completing `using` (#30254) (cherry picked from commit b482b096581d96bd0ddbe1d291672ca8211051d3) 12 December 2018, 13:15:23 UTC
ae671c2 fix formatting in bullets for simdloop (#30261) (cherry picked from commit 13049f2957e6af4aa7626dde23f953d3d8c2fe2b) 12 December 2018, 13:15:23 UTC
1bd2334 speed up (de)serialization of Base bits types in abstract containers (#30221) helps #30148 (cherry picked from commit 11c5680d5620b0b64420055e8474a2b8cf757010) 12 December 2018, 13:15:23 UTC
9f7b4d1 doc: fix typo for named regex capture group (#30237) (cherry picked from commit d8558ee055d7fb3da881eb6df868773c8469ae11) 12 December 2018, 13:15:23 UTC
back to top