- none
- SharedArray/Distributed bug
- none
- OffsetArrays tests added
- none
- none
- OffsetArrays now possible
- Array/Matrix of Int with missings problem resolved
- with Julia 1.3 OffsetArrays are not working, need to wait until JuliaLang/julia#34886) is released
- none
- none
- julia 0.7-DEV introduces "missing", therefor major recoding is needed.
- This version will be freezed for julia 0.4 to 0.6(including)
- none
- none
- Julia 0.7-DEV sharedArrayes removed from base
- none
- none
-
Julia 0.6 syntax change and deprecation
- WARNING: !(A::AbstractArray{Bool}) is deprecated, use .!(A) instead.
- none
- none
- dropped julia 0.3 support
- none
- none
- Only changes to reflect changes in syntax coming with julia 0.6
- This version still supports julia 0.3
- started changelog
- for function
sampleRanks
removed methods with optional parameters in favor of methods with keyword parameters
- none
In julia 0.5 and 0.6 using optional parameters in functions like
function test(a,b=1,c=1)
a+b+c
end
together with keyword parameters:
function test(a;b=1,c=1)
a+b+c
end
results in warning messages when importing the package with using
:
WARNING: Method definition test(Any) in ... overwritten at ...