Now that would generally be it as far as the repository itself is concerned, unless you get errors. I got errors and it is not uncommon when upgrading. I ran into issue on step 3, loading the dump file. It ran for about 2,000+ revisions and then stopped with these errors:
Cannot accept non-LF line endings in 'svn:log' property
Cannot accept non-LF line endings in 'svn:ignore' property
sed -e '/^svn:log$/,/^PROPS-END$/ s/^M/ /' -e '/^svn:ignore$/,/^PROPS-END$/ s/^M/\n/' repo1_7.dump > repo1_7-fix.dumpd as shown below.
sed -e '/^svn:log$/,/^PROPS-END$/ s/\x0D/ /' -e '/^svn:ignore$/,/^PROPS-END$/ s/\x0D/\n/' repo1_7.dump > repo1_7-fix.dump
Once that command finishes you will have repaired copy of the dump file which should load now.