This is an automated email from the ASF dual-hosted git repository.
quinnj pushed a change to branch core-rewrite
in repository https://gitbox.apache.org/repos/asf/arrow-julia.git
from a4006dc ci(coverage): scope processing by package
add 27040cc fix(arrowtypes): restore custom serialization
No new revisions were added by this update.
Summary of changes:
.github/workflows/ci.yml | 11 +-
CHANGELOG.md | 39 +-
Project.toml | 9 +-
README.md | 10 +-
conformance/Project.toml | 2 +
conformance/run.jl | 1 +
dev/release/README.md | 69 +-
dev/release/release_rc.sh | 37 +-
dev/release/verify_rc.sh | 4 +-
docs/dev/DESIGN-scan-ranges-trim.md | 2 +-
docs/dev/core-README.md | 7 +-
docs/src/index.md | 3 +-
docs/src/manual.md | 93 ++-
docs/src/migration.md | 95 ++-
src/Arrow.jl | 5 +-
src/ArrowTypes/README.md | 11 +-
src/ArrowTypes/src/ArrowTypes.jl | 28 +-
src/arrowtypes.jl | 663 +++++++++++++++++++
src/arrowtypes_write.jl | 536 +++++++++++++++
src/table.jl | 44 +-
src/write.jl | 119 +++-
test/Project.toml | 3 +
test/arrowtypes_compat_tests.jl | 1237 +++++++++++++++++++++++++++++++++++
test/runtests.jl | 3 +
24 files changed, 2888 insertions(+), 143 deletions(-)
create mode 100644 src/arrowtypes.jl
create mode 100644 src/arrowtypes_write.jl
create mode 100644 test/arrowtypes_compat_tests.jl