https://github.com/JuliaLang/julia

sort by:
Revision Author Date Message Commit Date
22590d5 VERSION: 0.7.0-DEV => 0.7.0-alpha (#27242) 31 May 2018, 00:07:32 UTC
de96d18 Update mac travis configuration to only pick specific brew packages (#27334) 30 May 2018, 23:57:56 UTC
a29d0d6 Add tests for auto-expansion of shell mode arguments 30 May 2018, 19:40:41 UTC
af97963 In shell mode, auto-expand all cmd arguments so `~` works. Closes https://github.com/JuliaLang/julia/issues/22181 30 May 2018, 19:40:41 UTC
23da960 NamedTuple constructor for iterables (#26914) 30 May 2018, 19:37:05 UTC
d3c99a7 Increase challenge_prompt timeout to 60 seconds (#27329) Change will possibly help with LibGit2 test failures which are occurring on the build bots. 30 May 2018, 18:53:55 UTC
8aa54ac make `coalesce` handle only `missing`; add `something` (#27258) * make `coalesce` handle only `missing`; add `something` to handle `nothing`/`Some` fixes #26927 * Move something docs with those for nothing and Some 30 May 2018, 18:50:04 UTC
f161ffa NEWS update and license headers for 0.7 (#27328) 30 May 2018, 18:49:32 UTC
45836fe Some doctests for Sockets (#27301) * Some doctests for Sockets * Use julia-repl instead of jldoctest 30 May 2018, 18:11:25 UTC
6c43314 regex documentation with julia-repl (#27319) 30 May 2018, 18:05:16 UTC
2d589cc Remove fftw checksums (#27322) 30 May 2018, 17:35:38 UTC
e2db5c5 Update the resources required to build Julia. (#27323) [ci skip] 30 May 2018, 17:25:17 UTC
36bcbb4 Finish breaking the decompositions: deprecate chol and chol! (#27249) * deprecate chol(A) to cholesky(A).U * deprecate chol: - chol(A::AbstractMatrix) -> cholesky(A).U - chol(A::Number) -> sqrt(A) - chol(A::UniformScaling) -> UniformScaling(sqrt(J.λ))) * deprecate chol!(A) to cholesky!(A).U * update Val and uplo deprecations for cholfact[!], bkfact[!], lufact[!], qrfact[!] * RFC: check the info code on getproperty now that we have replaced e.g. chol(A) with cholesky(A).U we don't check for positive definiteness anymore. This adds a check for that. * Remove latent chol[!] tests to address CI failures. 30 May 2018, 15:46:59 UTC
c39ec52 Fix JULIA_TESTFULL tests for SubArray (#27313) We test a few higher dimensions than had been supported by the testsuite. This is a simple fix and is all that is required: ``` $ time JULIA_TESTFULL=1 make -C test subarray make: Entering directory /home/mbauman/julia/test JULIA test/subarray Test (Worker) | Time (s) | GC (s) | GC % | Alloc (MB) | RSS (MB) subarray (1) | 3448.65 | 833.68 | 24.2 | 312818.37 | 8946.79 Test Summary: | Pass Total Overall | 219 219 SUCCESS make: Leaving directory /home/mbauman/julia/test real 57m54.425s user 57m19.639s sys 0m27.468s ``` 30 May 2018, 15:27:26 UTC
eebd2bd simplify doc/Makefile (#27145) * simplify doc/Makefile * move deploy target back to after_success and make sure to only deploy once, fix #27292 30 May 2018, 14:38:19 UTC
f7ed09b Update README.md (#27317) * Instruction to create Make.user * Remove USE_INTEL_LIBM = 1 30 May 2018, 14:33:51 UTC
b9c6cd0 Merge pull request #27304 from JuliaLang/kc/bump_pkg3_9 Bump Pkg 30 May 2018, 14:00:31 UTC
36fa1d3 make find_stdlib_deps more resiliant when weird things are inside the package folder 30 May 2018, 08:12:01 UTC
e84ae6c show resolver error without backtrace in repl mode (#315) 30 May 2018, 08:12:01 UTC
4f0d960 fix using local projects when testing (#311) * fix using local projects when testing 30 May 2018, 08:11:59 UTC
8241cb3 loading should swap state even if state == :deps (#27307) 30 May 2018, 08:08:07 UTC
c126c6c generate default outer ctors for more types with triangular parameter constraints (#27297) Previously, we required all type parameters to occur in field types in order to generate a default outer constructor. Now, it is sufficient for all parameters to be reachable via field types, or via the bounds of reachable parameters. fixes #27269 30 May 2018, 06:55:55 UTC
5dc1e3a remove old optimizer code (#27225) 30 May 2018, 06:54:42 UTC
f653b14 Strip the CartesianIndex wrapper from the ind2sub deprecation (#25211) Friendlier ind2sub deprecation messages 30 May 2018, 00:40:40 UTC
9dc4a94 Merge pull request #27221 from JuliaLang/vc/openblas_upgrade upgrade OpenBLAS to 0.3.0 30 May 2018, 00:21:20 UTC
1d3de4c Fix typo in split docstring (#27303) 29 May 2018, 18:10:01 UTC
0c575eb Some more examples/refs for array docs (#27294) * Some more examples/refs for array docs * fix doctests from https://github.com/JuliaLang/julia/pull/27038#issuecomment-392682234 29 May 2018, 18:00:44 UTC
649ac0c upgrade OpenBLAS to 0.3.0 29 May 2018, 17:40:51 UTC
fd29c81 Merge pull request #27299 from JuliaLang/jn/ssair_cleanup ssair: remove many unnecessary method allocations 29 May 2018, 17:19:56 UTC
387cd84 Revert "improve documentation of regex (#26802)" This reverts commit fb0d28981414d26455645a39ca71cf02e2d1f3bd. 29 May 2018, 16:51:51 UTC
993c551 For singleton types make Const(T.instance) and T equivalent as lattice elements (#27296) Both inference and the optimizer will readily change the latter to the former in a number of places and it is important for the type lattice to consider them equivalent in order for that operation to be not cause potential assertion errors. 29 May 2018, 15:25:55 UTC
71b5e83 Deprecate setrounding (#27166) Fixes #26935. This is the "minimal" change of deprecating Float32/Float64 support. 29 May 2018, 14:51:13 UTC
b0a7c14 make CommandError print properly (#312) 29 May 2018, 13:29:34 UTC
082be9a fix startswith/endswith implementation (#26922) 29 May 2018, 13:27:27 UTC
fb0d289 improve documentation of regex (#26802) 29 May 2018, 12:44:30 UTC
2edd482 fix versionrange with old ranges of the type 0.1.0 0.1.0+ (#308) * fix versionrange with old ranges of the type 0.1.0 0.1.0+ * add comment 29 May 2018, 11:22:21 UTC
0587c51 do not clobber entries in uuid_to_name (#310) 29 May 2018, 11:22:20 UTC
242dc51 Some doctests and examples and a missing "." (#27275) * Some doctests and examples and a missing "." * Cleanups! 29 May 2018, 07:33:45 UTC
0ee0367 More doctests for LinearAlgebra (#27279) 29 May 2018, 06:47:03 UTC
8e6cfff use offset axes for offset arrays (#27038) * Better support for non-Int axes * Fix offset unique test: This is an interesting case: it just falls out that unique across dimensions now preserves offset-ness of the non-uniqued dimensions * Simplify similar(::Type{T}, ...) and require T<:AbstractArray for the default definition * Use the same extension system for `reshape` as `similar`. * Fixup Offset similar(::Type, ...) definition to match 29 May 2018, 03:37:35 UTC
61bf419 ssair: remove many unnecessary method allocations inference / optimization needs to be more careful than other code, and the new ssair code has not been careful to follow best-practices for this code and avoid dynamic code patterns (and instead writing "C-like" code as much as reasonable) 28 May 2018, 23:45:58 UTC
4ecbd62 Merge remote-tracking branch 'origin/jb/precompilecleanup' into jn/ssair_cleanup 28 May 2018, 23:23:47 UTC
c545d77 disallow unrecognized escapes in unescape_string (part of #21284) (#27238) 28 May 2018, 20:47:42 UTC
83382cf split using isspace (#27252) 28 May 2018, 20:40:21 UTC
376c1f8 fix #26131, unsound updating of variable upper bounds in subtyping (#26737) 28 May 2018, 20:27:52 UTC
746d08f move cor, cov, std, stdm, var, varm and linreg to StatsBase (#27152) fix https://github.com/JuliaLang/julia/pull/25571#discussion_r162214400 (included in https://github.com/JuliaStats/StatsBase.jl/pull/379) fix #23769 (included in https://github.com/JuliaStats/StatsBase.jl/pull/379) fix #27140 28 May 2018, 12:38:37 UTC
d2111ac Pkg: fix precompile function (#27246) OldPkg puts OldPkg.dir into the LOAD_PATH which thus means OldPkg needs to be imported 28 May 2018, 11:31:10 UTC
2603b57 enable unconditional PKG3 precompile (#27105) * enable unconditional PKG3 precompile * reduce the number of precompile statements 28 May 2018, 11:13:31 UTC
a1e79f0 Some doc improvements to broadcast (#27277) 28 May 2018, 06:29:12 UTC
53d6c85 fix typo regarding eltype (#27280) 28 May 2018, 05:23:32 UTC
cfca311 Update the (partial)sortperm docs (#27169) * Remove incorrect keyword from partialsortperm documentation * Comment on guaranteed stability of sortperm irrespective of algorithm * Add examples to partialsortperm and comment about guaranteed stability * Remove 'alg' keyword from partialsortperm signature in docs. 28 May 2018, 02:01:16 UTC
c1e2798 fix a typo; protocoal -> protocol (#27281) 28 May 2018, 00:05:45 UTC
b7ac84a Merge pull request #27265 from JuliaLang/kf/noglobalrefphi Don't accidentally put GlobalRefs into a PhiNode 27 May 2018, 19:54:50 UTC
dbefa09 Fix definition of `eltype` for Stateful. (#27272) Fixes the doctest failure noted in #27153. 27 May 2018, 17:14:51 UTC
13d9d9e Don't accidentally put GlobalRefs into a PhiNode GlobalRefs (and Expr(:static_parameter)) are not legal to be moved into PhiNodes because they may have side effects (throw an undefined variable error), so they must remain at the place where they occurred in the code. Fixes #27240 27 May 2018, 02:15:12 UTC
2256c6b Merge pull request #27256 from JuliaLang/kf/missingU Fix definition of promote_rule(Missing, Missing) 27 May 2018, 02:12:58 UTC
432702a Merge pull request #27233 from JuliaLang/kf/visitcfunc Visit :cfunction during slot renaming 27 May 2018, 02:10:41 UTC
f6af5bf Merge pull request #27228 from JuliaLang/kf/pinodearg Handle PiNodes of arguments in type lifting 27 May 2018, 02:10:08 UTC
27bc2cd Fix definition of promote_rule(Missing, Missing) I don't believe this definition is ever actually used (because `promote_type(::Type{T}, ::Type{T}) where {T}` would intercept it earlier), but it is still useful for preventing the ambiguities test to complain. As such, we might as well make it correct. 26 May 2018, 21:18:39 UTC
f946bce Visit :cfunction during slot renaming Fixes #27215 26 May 2018, 21:18:07 UTC
6fff460 Handle PiNodes of arguments in type lifting Fixes #27209 26 May 2018, 20:33:19 UTC
7144b6b stop putting OldPkg.dir in LOAD_PATH (#27236) 25 May 2018, 20:23:09 UTC
deaefef Publish docs for Base.Iterators.Stateful (#27153) 25 May 2018, 16:40:38 UTC
6a0ac1b Simplify iteration over ranges in general (#27161) * Make step of unit range return the unit in the element type * Simplify iteration over ordinal range * Test whether we can iterate over the full inclusive step range of the largest bits integer type * StepRange can safely assume we will land on the boundary of the range; specialization for floats makes no sense, since a StepRange will throw when being constructed with it. * Combine iteration method of LinRange and StepRangeLen 25 May 2018, 16:03:26 UTC
b657122 Try to fix CircleCI (#27257) * Try to fix CircleCI Looks like Circle is having trouble getting GCC 4.8. Maybe 4.9 is available? Use GCC 6. 25 May 2018, 14:37:07 UTC
1c74819 Fix typos in function devdocs (#27259) 25 May 2018, 08:09:48 UTC
779cf84 freebsdci: invoke check-whitespace (#27243) 24 May 2018, 21:24:22 UTC
3b4fbf3 give shortcut for Pkg help in banner (#27231) 24 May 2018, 18:04:35 UTC
3fa83f9 Fix naivesub Bidigonal to work for matrix elements by avoiding (#27203) calling zero(T). Also a few minor performance improvements. 24 May 2018, 18:00:27 UTC
14dbdf5 Merge pull request #27237 from JuliaLang/kc/pkg_rename_fixups Small fixup from Pkg rename PR 24 May 2018, 11:25:35 UTC
2f93c94 Merge pull request #27212 from Sacha0/breakless once more unto the decomposition breach, dear friends! 24 May 2018, 01:38:57 UTC
13b2f2b Merge pull request #27222 from JuliaLang/vc/appveyot_ccache Use ccache on AppVeyor to speedup builds 23 May 2018, 21:58:44 UTC
fd70a0c Merge pull request #27206 from JuliaLang/kf/typunionsplit In union splitting also check type of first argument 23 May 2018, 21:16:47 UTC
4cc5677 tweak a docstring for require 23 May 2018, 21:16:35 UTC
553b4bf remove debug prints from making the docs 23 May 2018, 21:16:20 UTC
a209a45 Rename Pkg -> OldPkg, Pkg3 -> Pkg (#27095) 23 May 2018, 21:03:19 UTC
db158b8 Fixing bug in qsort example in docs (#27214) 23 May 2018, 18:29:48 UTC
efc65ad Support state from old iteration protocol in Iterators.Rest (#27216) 23 May 2018, 18:28:43 UTC
0e77134 clean up large number of identity conversions to `Type` in precompile.jl 23 May 2018, 18:06:38 UTC
edf5bd2 Expand pull request numbers for some news items. 23 May 2018, 16:56:02 UTC
4873d97 Deprecate decomposition getindex methods in favor of property accessors. 23 May 2018, 16:56:02 UTC
aa65388 Deprecate eig to eigen and destructuring via iteration. 23 May 2018, 16:53:36 UTC
08fae67 Merge pull request #27177 from JuliaLang/kf/newirprint [NewOptimizer] Hook up printing, print linetable 23 May 2018, 16:29:49 UTC
e1aa7f0 Use ccache on AppVeyor to speedup builds 23 May 2018, 16:28:54 UTC
ca35cd9 fix #27155, macro hygiene of `A{B} = C` expressions (#27210) 23 May 2018, 14:29:54 UTC
baa1437 make `@sync` lexically scoped and merge `@schedule` with `@async` (#27164) 23 May 2018, 14:29:13 UTC
6e5d700 Deprecate cholfact! to cholesky!. 23 May 2018, 04:25:59 UTC
8f2b195 Deprecate cholfact to cholesky. 23 May 2018, 04:25:59 UTC
ee57c76 Deprecate eigfact! to eigen!. 23 May 2018, 04:25:58 UTC
79486b3 Add `select_std_dll` to ease `gfortran-X` selection on Windows 23 May 2018, 03:56:27 UTC
0d3c2ea Deprecate eigfact to eigen. 23 May 2018, 03:19:56 UTC
ab672a6 Deprecate hessfact! to hessenberg!. 23 May 2018, 02:51:03 UTC
5797f88 Deprecate hessfact to hessenberg. 23 May 2018, 02:45:31 UTC
cf08aec Deprecate bkfact! to bunchkaufman!. 23 May 2018, 02:38:15 UTC
a729118 Deprecate bkfact to bunchkaufman. 23 May 2018, 02:25:49 UTC
0eda8e4 Deprecate svdfact to svd. 23 May 2018, 01:30:15 UTC
1084fb4 Deprecate svdfact! to svd!. 23 May 2018, 01:28:41 UTC
a659ee9 Deprecate ldltfact! to ldlt!. 23 May 2018, 01:26:47 UTC
23c8ff5 Deprecate qrfact! to qr!. 23 May 2018, 01:23:13 UTC
099bb32 Deprecate lqfact! to lq!. 23 May 2018, 01:21:36 UTC
back to top