show/hide this revision's text 2 added 12 characters in body

The most important thing before a new release is NOT to break anything that works now. So the most important step is:

  • feature-freeze: only fix bugs now, no new or enhanced features in the last phase before release (you can branch in your VCSversion-control, new features going now to the branch for the next version)

As you should only fix bugs now, it's time for more testing:

  • give the software to external testers
  • make some stress-tests, look if the software will break under load
  • install and test it on a fresh box (not on the developer-box)
  • Try to start with no configuration/empty database or whatever is a relevant start-configuration for your project.

I hope you already do unit-testing and continuous integration.

If you have time between fixing bugs, you can check the documentation: Includes it the changes since the last release, are the tutorials working?

And you can check, if your code includes the new version-number at all places (make a full-text-search for the old version-number). It's always fun for the users, if you release version 1.3 and the about-dialog talks about version 1.2.

Never do in the last phase before the release:

  • refactoring
  • working on TODO-comments (as mentioned by others)

These are jobs for the first time AFTER the release.

show/hide this revision's text 1

The most important thing before a new release is NOT to break anything that works now. So the most important step is:

  • feature-freeze: only fix bugs now, no new or enhanced features in the last phase before release (you can branch in your VCS, new features going now to the branch for the next version)

As you should only fix bugs now, it's time for more testing:

  • give the software to external testers
  • make some stress-tests, look if the software will break under load
  • install and test it on a fresh box (not on the developer-box)
  • Try to start with no configuration/empty database or whatever is a relevant start-configuration for your project.

I hope you already do unit-testing and continuous integration.

If you have time between fixing bugs, you can check the documentation: Includes it the changes since the last release, are the tutorials working?

And you can check, if your code includes the new version-number at all places (make a full-text-search for the old version-number). It's always fun for the users, if you release version 1.3 and the about-dialog talks about version 1.2.

Never do in the last phase before the release:

  • refactoring
  • working on TODO-comments (as mentioned by others)

These are jobs for the first time AFTER the release.