DEV Community

Cover image for One Easy Trick to Manage Your Software Release
Benjamin Justice
Benjamin Justice

Posted on • Originally published at justice.sh on

One Easy Trick to Manage Your Software Release

A software release can be daunting. Software engineers learn how to plan, code, build and test their software. However many aren’t taught about releasing and maintaining software.

In this article I want to share one of the simplest and most effective tools for planning your software release: The software release checklist.

I will not assume any prior knowledge for the last phases in our DevOps Lifecycle. If you have no clue about releasing software, this is for you.

What is a Software Release?

The DevOps Lifecycle defines 4 phases after you have finished developing your software version:

  • Release
  • Deploy
  • Operate
  • Monitor

As you can see, actually uploading and distributing the software is the next step, Deploy.

Before we get to that phase, we should plan, schedule and communicate our release. This may sound like a lot of management and, for big corporations, this is also the case. However if you are in a small business or startup, this can be solved with one of the easiest tools available.

The Software Release Checklist

A good software release is all about managing the process.

And the simplest way to manage a process is with a checklist.

I will share my release checklist with you, but keep in mind that you should alter it to suit your company and your software.

When I talk about the “app” or “software”, I mean the version, which we are releasing.

Assign all Tasks.

Assign every task in the checklist to exactly 1 person.

The responsible person for a task may change every release, but it is critical, that every task is assigned to someone. If that person only coordinates others doing the task, that is absolutely fine.

The important part here is to have exactly 1 contact person, in case things go wrong or you need a status update.

Software Release Checklist for a mobile App

The following checklist is for a mobile App without a backend. It involves releasing to Google Play Store and Apple App Store.

As some of you may be new to App releases, I have gone into a little more detail here.

Pre-Release

  1. Define new software version. (I recommend Semantic Versioning)
  2. Create release checklist for this software version in our Wiki/Google Drive/etc. It should be visible to everyone involved.
  3. Define target release date. This does not have to be communicated outside of your company. This is mainly for our internal planning.
  4. Define an “end of feature development” for the release. This is the deadline for new features. I recommend at least 1 week before planning your release (2-3 weeks, if releasing for iOS).
  5. A Maintenance Plan exists. Think about where people can report bugs and how you prioritise and fix them. This might include reading app store reviews and a support forum you may have. This can be a simple wiki page with a checklist.
  6. Inform marketing. This might be a team, a person, or yourself. Update your Presskit, prepare a tweet, prepare new screenshots.
  7. We have a release branch or tag in git for this software version. This helps us in case we must test old versions.
  8. Test android app.
  9. Test iOS app.
  10. Upload android app to Google Play Store.
  11. Upload iOS app to Apple App Store.
  12. Update Screenshots & Information in Google Play Store.
  13. Update Screenshots & Information in Apple App Store.
  14. The Apple Review was successful. This step may take several days, even 1-2 weeks if you must fix something. Take this into account when communicating deadlines.
  15. Release android app on Google Play Store.
  16. Release iOS app on Apple App Store.

Post-Release

For software releases without a backend, the post-release checklist is quite short. It basically consists of testing your released app and monitoring customer feedback

  1. Run Regression Tests on released Android App.
  2. Run Regression Tests on released iOS App.
  3. Define process for checking App Store reviews / support forums. Who checks these? How often?

Further Reading

All in all, software releases are a complex topic, which requires communication with many people. can be simplified

Looking for more inspiration? Yasmin Nozari has a post with more information on release checklists.

You can reach out to me on Twitter or the BrutalHack Discord Server for questions or feedback.

The post One Easy Trick to Manage Your Software Release appeared first on justice.sh.

Oldest comments (0)