You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Minor changes introduced in order to prepare the package for v0.6:
- [x] `VERSION < v"0.6"` added, since the previous implementation
was failing in juliabox.com with the `v0.6-dev` kernel,
- [x] Relaxed the build matrix in `.travis.yml` file,
- [x] Changed from `Array(T, n)` to `Vector{T}(n)` to get rid of the
deprecation warnings, and,
- [x] Fixed `convert` rules in two ways: (1) added `map` version to the
`AbstractArray` case to cover for everything, (2) removed the
`promote_type` section from conversions.
As for the last item above, `convert{T,S}(::Type{Poly{T}}, n::S)` should
ALWAYS convert to `Poly{T}`, not to `Poly{promote_type(T,S)}`.
Closes#100.
0 commit comments