Now that the initial preview release has been successfully built, you need to make another release to fix reported bugs, plus few minor documentation items didn't make it in properly.
Here is a procedure for making updates to a previous release:
Using the branch directory, allows us to make continues updates to any release that has been previously made. As a matter of fact, it will always be neccessary to make a branch of every release, even if is only to change the build properties to reflect a new stage of release, such as going from "alpha1" to "beta1" even if no bugs or other changes were made. Since every new release always starts out as either an alpha, a beta or a release candidate (rc), it will always be necessary to create a branch in order to make the switch.
The only exception to the above rule, is if there is completely no new development on the main development trunk, and the updates can safely be made there. That approach though, will freeze new code development, possibly for a significant amount of time. It is better to use the branch to free up the trunk to be modified independent of any previously released software.
Any changes made to the branch, eventually need to be merged back into the trunk, so that both are synchronized.