ringdrop 0.13.1

P2P streamed file transfer with ring-based access control, built on iroh and bao protocols
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: release

# Prepare and push a release.
# Usage example: make release VERSION=0.5.0
release:
	@if [ -z "$(VERSION)" ]; then \
		echo "Usage: make release VERSION=x.y.z"; \
		exit 1; \
	fi
	git-cliff -o CHANGELOG.md --tag "v$(VERSION)"
	git add CHANGELOG.md
	git commit -m "chore: release v$(VERSION)"
	git tag "v$(VERSION)"
	git push origin main --tags