#!/bin/sh ############################################################################ # What is this script? # # Chef uses a workflow tool called Expeditor to manage version bumps, changelogs # and releases. After a PR is merged in Chef Expeditor calls this script to update # the PATCH version in the VERSION file as well as the version.rb file in both chef # and chef-config. When that's done it bundle updates to pull in that new chef-config. ############################################################################ set -evx sed -i -r "s/^(\s*)VERSION = \".+\"/\1VERSION = \"$(cat VERSION)\"/" chef-config/lib/chef-config/version.rb sed -i -r "s/^(\s*)VERSION = \".+\"/\1VERSION = \"$(cat VERSION)\"/" chef-bin/lib/chef-bin/version.rb sed -i -r "s/VersionString\.new\(\".+\"\)/VersionString.new(\"$(cat VERSION)\")/" lib/chef/version.rb # Update the version inside Gemfile.lock bundle update chef chef-config --jobs=7 --conservative # Once Expeditor finishes executing this script, it will commit the changes and push # the commit as a new tag corresponding to the value in the VERSION file.