You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Stuff to take care of when doing a 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
|
|
|
|
|
|
|