458126e700
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
19 lines
313 B
Bash
19 lines
313 B
Bash
#!/bin/sh
|
|
|
|
# Stuff to take care of when doing a release
|
|
echo "Preparing next release"
|
|
|
|
# adjust version
|
|
vi bin/cdist-config
|
|
|
|
# adjust release date
|
|
vi doc/changelog
|
|
|
|
# Import into current version branch
|
|
git checkout 1.6
|
|
git merge master
|
|
|
|
# Ensure documentation builds cleanly
|
|
./build.sh clean && ./build.sh man
|
|
|
|
|