myval 0.1.21

Lightweight Apache Arrow data frame
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
VERSION=$(shell grep ^version Cargo.toml|cut -d\" -f2)

all:
	@echo "what do you want to build today?"

release: publish-crate tag

publish-crate:
	cargo publish

tag:
	git tag -a v${VERSION} -m v${VERSION}
	git push origin --tags
	echo "" | gh release create v${VERSION}