synd-api 0.2.6

syndicationd backend api
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import '../.justfile'

pkg := "api"

# List recipe
default:
    just --list

# Generate CHANGELOG for given version release 
changelog version:
    @nu {{script_dir}}/changelog.nu {{pkg}} {{version}}    

# Release crate
[no-cd]
release *flags:
    cargo release --package synd-{{pkg}} -v {{flags}}