---
title: "Como o Django é formado?"
version: 5.1
locale: pt-br
source: https://docs.djangoproject.com/pt-br/5.1/internals/howto-release-django/
canonical: https://djangodocs.dev/pt-br/5.1/internals/howto-release-django/
---
# Como o Django é formado?

Este documento explica como fazer uma release do Django.

**Por favor, mantenha essas instruções atualizadas se você fizer mudanças!** A ideia aqui é ser descritivo, não prescritivo, então sinta-se à vontade para agilizar ou por outro lado fazer mudanças, mas **atualize este documento de acordo**

## Visão Geral

Existem três tipos de releases que você pode precisar fazer:

- Security releases: disclosing and fixing a vulnerability. This’ll
  generally involve two or three simultaneous releases – e.g.
  3.2.x, 4.0.x, and, depending on timing, perhaps a 4.1.x.
- Regular version releases: either a final release (e.g. 4.1) or a
  bugfix update (e.g. 4.1.1).
- Pre-releases: e.g. 4.2 alpha, beta, or rc.

Uma curta versão dos passos envolvidos é a seguinte:

1. Se esta é uma release de segurança, pre-notificar a lista de distribuição de segurança uma semana antes da release atual.
2. Revisar as notas de release, buscando por melhor organização e erros de escrita. Esboçar um post de blog e um e-mail de anúncio.
3. Atualizar os números de versão e criar um ou mais pacotes de release.
4. Fazer upload do pacote (ou dos pacotes) para o servidor `djangoproject.com`.
5. Verify package(s) signatures, check if they can be installed, and ensure
   minimal functionality.
6. Fazer upload da nova versão (ou versões) para o PyPI.
7. Declare a nova versão no admin em `djangoproject.com`.
8. Postar a entrada no blog e enviar os anúncios de e-mail.
9. Atualizar os números de versão pós-release.

Existem vários detalhes, então por favor continue lendo.

## Pré-requisitos

You’ll need a few things before getting started. If this is your first release,
you’ll need to coordinate with another releaser to get all these things lined
up, and write to the Ops mailing list requesting the required access and
permissions.

- A Unix environment with these tools installed (in alphabetical order):

  - bash
  - git
  - GPG
  - make
  - man
  - hashing tools (typically `md5sum`, `sha1sum`, and `sha256sum` on
    Linux, or `md5` and `shasum` on macOS)
  - python
  - ssh
- A GPG key pair. Ensure that the private part of this key is securely stored.
  The public part needs to be uploaded to your GitHub account, and also to the
  Jenkins server running the “confirm release” job.

  > **More than one GPG key**
  >
  > If the key you want to use is not your default signing key, you’ll need to
  > add `-u you@example.com` to every GPG signing command shown below, where
  > `you@example.com` is the email address associated with the key you want
  > to use.
- A clean Python virtual environment per Django version being released, with
  these required Python packages installed:

  ```shell
  $ python -m pip install build twine
  ```
- Access to [Django’s project on PyPI](https://pypi.org/project/Django/) to
  upload binaries, ideally with extra permissions to [yank a release](https://pypi.org/help/#yanked) if necessary. Create a project-scoped token
  following the [official documentation](https://pypi.org/help/#apitoken)
  and set up your `$HOME/.pypirc` file like this:

  *`~/.pypirc`*

  ```ini
  [distutils]
    index-servers =
      pypi
      django

  [pypi]
    username = __token__
    password = # User-scoped or project-scoped token, to set as the default.

  [django]
    repository = https://upload.pypi.org/legacy/
    username = __token__
    password = # A project token.
  ```
- Access to [Django’s project on Transifex](https://app.transifex.com/django/django/), with a Manager role. Generate
  an API Token in the [user setting section](https://app.transifex.com/user/settings/api/) and set up your
  `$HOME/.transifexrc` file like this:

  *`~/.transifexrc`*

  ```ini
  [https://www.transifex.com]
    rest_hostname = https://rest.api.transifex.com
    token = # API token
  ```
- Access to the `djangoproject.com` server to upload files (using `scp`).
- Access to the Django admin on `djangoproject.com` as a “Site maintainer”.
- Access to create a post in the [Django Forum - Announcements category](https://forum.djangoproject.com/c/announcements/7) and to  send emails to
  the following mailing lists:

  - [django-announce](https://groups.google.com/g/django-announce/)
- Access to the `django-security` repo in GitHub. Among other things, this
  provides access to the pre-notification distribution list (needed for
  security release preparation tasks).

## Tarefas de pré-release

A few items need to be taken care of before even beginning the release process.
This stuff starts about a week before the release; most of it can be done
any time leading up to the actual release.

### 10 (or more) days before a security release

1. Request the [CVE IDs](https://cveform.mitre.org/)  for the security
   issue(s) being released. One CVE ID per issue, requested with
   `Vendor: djangoproject` and `Product: django`.
2. Generate the relevant (private) patch(es) using `git format-patch`, one
   for the `main` branch and one for each stable branch being patched.

### A week before a security release

1. Send out pre-notification exactly **one week** before the security release.
   The template for that email and a list of the recipients are in the private
   `django-security` GitHub wiki. BCC the pre-notification recipients and be
   sure to include the relevant CVE IDs. Attach all the relevant patches
   (targeting `main` and the stable branches) and sign the email text with
   the key you’ll use for the release, with a command like:

   ```shell
   $ gpg --clearsign --digest-algo SHA256 prenotification-email.txt
   ```
2. [Notify django-announce](/pt-br/5.1/internals/security/#security-disclosure) of the upcoming
   security release with a general message such as:

   ```text
   Notice of upcoming Django security releases (3.2.24, 4.2.10 and 5.0.2)

   Django versions 5.0.2, 4.2.10, and 3.2.24 will be released on Tuesday,
   February 6th, 2024 around 1500 UTC. They will fix one security defect
   with severity "moderate".

   For details of severity levels, see:
   https://docs.djangoproject.com/en/dev/internals/security/#how-django-discloses-security-issues
   ```

### A few days before any release

1. As the release approaches, watch Trac to make sure no release blockers are
   left for the upcoming release. Under exceptional circumstances, such as to
   meet a pre-determined security release date, a release could still go ahead
   with an open release blocker. The releaser is trusted with the decision to
   release with an open release blocker or to postpone the release date of a
   non-security release if required.
2. Check with the other mergers to make sure they don’t have any uncommitted
   changes for the release.
3. Proofread the release notes, including looking at the online version to
   [catch any broken links](/pt-br/5.1/internals/contributing/writing-documentation/#documentation-link-check) or reST errors, and
   make sure the release notes contain the correct date.
4. Verifique duas vezes as menções de depreciação ao longo do tempo nas notas da release em busca de quaisquer APIs listadas como depreciadas, e que as notas mencionam quaisquer mudanças na versão suportada do Python.
5. Verifique duas vezes se o índice das notas de release possuem um link para as notas da nova release; isso estará em `docs/releases/index.txt`.
6. If this is a [feature release](/pt-br/5.1/internals/release-process/#term-Feature-release), ensure translations from Transifex
   have been integrated. This is typically done by a separate translation’s
   manager rather than the releaser, but here are the steps. This process is a
   bit lengthy so be sure to set aside 4-10 hours to do this, and ideally plan
   for this task one or two days ahead of the release day.

   In addition to having a configured Transifex account, the
   [tx CLI](https://developers.transifex.com/docs/cli) should be available in
   your `PATH`. Then, you can fetch all the translations by running:

   ```shell
   $ python scripts/manage_translations.py fetch
   ```

   This command takes some time to run. When done, carefully inspect the output
   for potential errors and/or warnings. If there are some, you will need to
   debug and resolve them on a case by case basis.

   The recently fetched translations need some manual adjusting. First of all,
   the `PO-Revision-Date` values must be manually bumped to be later than
   `POT-Creation-Date`. You can use a command similar to this to bulk update
   all the `.po` files (compare the diff against the relevant stable branch):

   ```shell
   $ git diff --name-only stable/5.0.x | grep "\.po"  | xargs sed -ri "s/PO-Revision-Date: [0-9\-]+ /PO-Revision-Date: $(date -I) /g"
   ```

   All the new `.po` files should be manually and carefully inspected to
   avoid committing a change in a file without any new translations. Also,
   there shouldn’t be any changes in the “plural forms”: if there are any
   (usually Spanish and French report changes for this) those will need
   reverting.

   Lastly, commit the changed/added files (both `.po` and `.mo`) and create
   a new PR targeting the stable branch of the corresponding release (example
   [PR updating translations for 4.2](https://github.com/django/django/pull/16715)).
7. [Update the django-admin manual page](/pt-br/5.1/internals/contributing/writing-documentation/#django-admin-manpage):

   ```shell
   $ cd docs
   $ make man
   $ man _build/man/django-admin.1  # do a quick sanity check
   $ cp _build/man/django-admin.1 man/django-admin.1
   ```

   e então faça commit da página man alterada.
8. If this is the alpha release of a new series, create a new stable branch
   from main. For example, when releasing Django 4.2:

   ```shell
   $ git checkout -b stable/4.2.x origin/main
   $ git push origin -u stable/4.2.x:stable/4.2.x
   ```

   At the same time, update the `django_next_version` variable in
   `docs/conf.py` on the stable release branch to point to the new
   development version. For example, when creating `stable/4.2.x`, set
   `django_next_version` to `'5.0'` on the new branch.
9. If this is the “dot zero” release of a new series, create a new branch from
   the current stable branch in the [django-docs-translations](https://github.com/django/django-docs-translations) repository. For
   example, when releasing Django 4.2:

   ```shell
   $ git checkout -b stable/4.2.x origin/stable/4.1.x
   $ git push origin stable/4.2.x:stable/4.2.x
   ```
10. Escreva o post no blog para o anúncio da release. Você pode entrar dentro do admin a qualquer momento e marcar ele como inativo. Aqui vão alguns exemplos: [example security release announcement](https://www.djangoproject.com/weblog/2013/feb/19/security/), [example regular release announcement](https://www.djangoproject.com/weblog/2012/mar/23/14/), [example pre-release announcement](https://www.djangoproject.com/weblog/2012/nov/27/15-beta-1/).

## Lançando a release

OK, this is the fun part, where we actually push out a release! If you’re
issuing **multiple releases**, repeat these steps for each release.

1. Check [Jenkins](https://djangoci.com) is green for the version(s) you’re putting out. You
   probably shouldn’t issue a release until it’s green, and you should make
   sure that the latest green run includes the changes that you are releasing.
2. Cleanup the release notes for this release. Make these changes in `main`
   and backport to all branches where the release notes for a particular
   version are located.

   1. For a feature release, remove the `UNDER DEVELOPMENT` header at the top
      of the release notes, remove the `Expected` prefix and update the
      release date, if necessary ([example commit](https://github.com/django/django/commit/1994a2643881a9e3f9fa8d3e0794c1a9933a1831)).
   2. For a patch release, remove the `Expected` prefix and update the
      release date for all releases, if necessary ([example commit](https://github.com/django/django/commit/34a503162fe222033a1cd3249bccad014fcd1d20)).
3. A release always begins from a release branch, so you should make sure
   you’re on an up-to-date stable branch. Also, you should have available a
   clean and dedicated virtual environment per version being released. For
   example:

   ```shell
   $ git checkout stable/4.1.x
   $ git pull
   ```
4. If this is a security release, merge the appropriate patches from
   `django-security`. Rebase these patches as necessary to make each one a
   plain commit on the release branch rather than a merge commit. To ensure
   this, merge them with the `--ff-only` flag; for example:

   ```shell
   $ git checkout stable/4.1.x
   $ git merge --ff-only security/4.1.x
   ```

   (This assumes `security/4.1.x` is a branch in the `django-security` repo
   containing the necessary security patches for the next release in the 4.1
   series.)

   If git refuses to merge with `--ff-only`, switch to the security-patch
   branch and rebase it on the branch you are about to merge it into (`git
   checkout security/4.1.x; git rebase stable/4.1.x`) and then switch back and
   do the merge. Make sure the commit message for each security fix explains
   that the commit is a security fix and that an announcement will follow
   ([example security commit](https://github.com/django/django/commit/bf39978a53f117ca02e9a0c78b76664a41a54745)).
5. Update the version number in `django/__init__.py` for the release.
   Please see [notes on setting the VERSION tuple](#notes-on-setting-the-version-tuple) below for details
   on `VERSION` ([example commit](https://github.com/django/django/commit/2719a7f8c161233f45d34b624a9df9392c86cc1b)).

   1. If this is a pre-release package also update the “Development Status”
      trove classifier in `pyproject.toml` to reflect this. An `rc`
      pre-release should not change the trove classifier ([example
      commit for alpha release](https://github.com/django/django/commit/eeeacc52a967234e920c001b7908c4acdfd7a848),
      [example commit for beta release](https://github.com/django/django/commit/25fec8940b24107e21314ab6616e18ce8dec1c1c)).
   2. Otherwise, make sure the classifier is set to
      `Development Status :: 5 - Production/Stable`.
6. Tag the release using `git tag`. For example:

   ```shell
   $ git tag --sign --message="Tag 4.1.1" 4.1.1
   ```

   You can check your work running `git tag --verify <tag>`.
7. Push your work and the new tag:

   ```shell
   $ git push
   $ git push --tags
   ```
8. Certifique-se de que você tem uma árvore absolutamente limpa rodando o comando git clean -dfx\`.
9. Run `python -m build` to generate the release packages. This will create
   the release packages in a `dist/` directory.
10. Generate the hashes of the release packages:

    ```shell
    $ cd dist
    $ md5sum *
    $ sha1sum *
    $ sha256sum *
    ```
11. Create a “checksums” file, `Django-<<VERSION>>.checksum.txt` containing
    the hashes and release information. Start with this template and insert the
    correct version, date, GPG key ID (from
    `gpg --list-keys --keyid-format LONG`), release manager’s GitHub username,
    release URL, and checksums:

    ```text
    This file contains MD5, SHA1, and SHA256 checksums for the source-code
    tarball and wheel files of Django <<VERSION>>, released <<DATE>>.

    To use this file, you will need a working install of PGP or other
    compatible public-key encryption software. You will also need to have
    the Django release manager's public key in your keyring. This key has
    the ID ``XXXXXXXXXXXXXXXX`` and can be imported from the MIT
    keyserver, for example, if using the open-source GNU Privacy Guard
    implementation of PGP:

        gpg --keyserver pgp.mit.edu --recv-key XXXXXXXXXXXXXXXX

    or via the GitHub API:

        curl https://github.com/<<RELEASE MANAGER GITHUB USERNAME>>.gpg | gpg --import -

    Once the key is imported, verify this file:

        gpg --verify <<THIS FILENAME>>

    Once you have verified this file, you can use normal MD5, SHA1, or SHA256
    checksumming applications to generate the checksums of the Django
    package and compare them to the checksums listed below.

    Release packages
    ================

    https://www.djangoproject.com/m/releases/<<MAJOR VERSION>>/<<RELEASE TAR.GZ FILENAME>>
    https://www.djangoproject.com/m/releases/<<MAJOR VERSION>>/<<RELEASE WHL FILENAME>>

    MD5 checksums
    =============

    <<MD5SUM>>  <<RELEASE TAR.GZ FILENAME>>
    <<MD5SUM>>  <<RELEASE WHL FILENAME>>

    SHA1 checksums
    ==============

    <<SHA1SUM>>  <<RELEASE TAR.GZ FILENAME>>
    <<SHA1SUM>>  <<RELEASE WHL FILENAME>>

    SHA256 checksums
    ================

    <<SHA256SUM>>  <<RELEASE TAR.GZ FILENAME>>
    <<SHA256SUM>>  <<RELEASE WHL FILENAME>>
    ```
12. Assine o arquivo de checksum (`gpg --clearsign --digest-algo SHA256 Django-<version>.checksum.txt`). Isso gera um documento assinado, `Django-<version>.checksum.txt.asc` que você pode então verificar usando `gpg --verify Django-<version>.checksum.txt.asc`.

## Fazendo a release (ou as releases) disponível ao público

Agora você está pronto para lançar a release efetivamente. Para isso faça:

1. Upload the checksum file(s):

   ```shell
   $ scp Django-A.B.C.checksum.txt.asc djangoproject.com:/home/www/www/media/pgp/Django-A.B.C.checksum.txt
   ```

   (If this is a security release, what follows should be done 15 minutes
   before the announced release time, no sooner.)
2. Upload the release package(s) to the djangoproject server, replacing
   A.B. with the appropriate version number, e.g. 4.1 for a 4.1.x release:

   ```shell
   $ scp Django-* djangoproject.com:/home/www/www/media/releases/A.B
   ```

   If this is the alpha release of a new series, you will need to create
   **first** the directory A.B.
3. Test that the release packages install correctly using `pip`. Here’s one
   simple method (this just tests that the binaries are available, that they
   install correctly, and that migrations and the development server start, but
   it’ll catch silly mistakes):

   ```shell
   $ RELEASE_VERSION='4.1.1'
   $ MAJOR_VERSION=`echo $RELEASE_VERSION| cut -c 1-3`

   $ python -m venv django-pip-tarball
   $ . django-pip-tarball/bin/activate
   $ python -m pip install https://www.djangoproject.com/m/releases/$MAJOR_VERSION/Django-$RELEASE_VERSION.tar.gz
   $ django-admin startproject test_tarball
   $ cd test_tarball
   $ ./manage.py --help  # Ensure executable bits
   $ python manage.py migrate
   $ python manage.py runserver
   <CTRL+C>
   $ deactivate
   $ cd .. && rm -rf test_tarball && rm -rf django-pip-tarball

   $ python -m venv django-pip-wheel
   $ . django-pip-wheel/bin/activate
   $ python -m pip install https://www.djangoproject.com/m/releases/$MAJOR_VERSION/Django-$RELEASE_VERSION-py3-none-any.whl
   $ django-admin startproject test_wheel
   $ cd test_wheel
   $ ./manage.py --help  # Ensure executable bits
   $ python manage.py migrate
   $ python manage.py runserver
   <CTRL+C>
   $ deactivate
   $ cd .. && rm -rf test_wheel && rm -rf django-pip-wheel
   ```
4. Run the [confirm-release](https://djangoci.com/job/confirm-release/) build on Jenkins to verify the checksum file(s)
   (e.g. use `4.2rc1` for
   <https://media.djangoproject.com/pgp/Django-4.2rc1.checksum.txt>).
5. Upload the release packages to PyPI (for pre-releases, only upload the wheel
   file):

   ```shell
   $ twine upload --repository django dist/*
   ```
6. Go to the [Add release page in the admin](https://www.djangoproject.com/admin/releases/release/add/), enter the new release number
   exactly as it appears in the name of the tarball
   (`Django-<version>.tar.gz`). So for example enter “4.1.1” or “4.2rc1”,
   etc. If the release is part of an LTS branch, mark it so.

   If this is the alpha release of a new series, also create a Release object
   for the *final* release, ensuring that the *Release date* field is blank,
   thus marking it as *unreleased*. For example, when creating the Release
   object for `4.2a1`, also create `4.2` with the Release date field blank.
7. Faça um post no blog anunciando que a release foi lançada.
8. For a new version release (e.g. 4.1, 4.2), update the default stable version
   of the docs by flipping the `is_default` flag to `True` on the
   appropriate `DocumentRelease` object in the `docs.djangoproject.com`
   database (this will automatically flip it to `False` for all
   others); you can do this using the site’s admin.

   Create new `DocumentRelease` objects for each language that has an entry
   for the previous release. Update djangoproject.com’s [robots.docs.txt](https://github.com/django/djangoproject.com/blob/main/djangoproject/static/robots.docs.txt)
   file by copying the result generated from running the command
   `manage_translations.py robots_txt` in the current stable branch from the
   [django-docs-translations repository](https://github.com/django/django-docs-translations). For example, when releasing Django
   4.2:

   ```shell
   $ git checkout stable/4.2.x
   $ git pull
   $ python manage_translations.py robots_txt
   ```
9. Post the release announcement to the [django-announce](/pt-br/5.1/internals/mailing-lists/#django-announce-mailing-list) mailing list and the
   Django Forum. This should include a link to the announcement blog post.
10. If this is a security release, send a separate email to
    [oss-security@lists.openwall.com](mailto:oss-security@lists.openwall.com). Provide a descriptive subject, for example,
    “Django” plus the issue title from the release notes (including CVE ID). The
    message body should include the vulnerability details, for example, the
    announcement blog post text. Include a link to the announcement blog post.

## Pós-release

Você quase terminou! Tudo que resta a fazer agora é:

1. Update the `VERSION` tuple in `django/__init__.py` again,
   incrementing to whatever the next expected release will be. For
   example, after releasing 4.1.1, update `VERSION` to
   `VERSION = (4, 1, 2, 'alpha', 0)`.
2. Add the release in [Trac’s versions list](https://code.djangoproject.com/admin/ticket/versions) if necessary (and make it the
   default by changing the `default_version` setting in the
   code.djangoproject.com’s [trac.ini](https://github.com/django/code.djangoproject.com/blob/main/trac-env/conf/trac.ini), if it’s a final release). The new X.Y
   version should be added after the alpha release and the default version
   should be updated after “dot zero” release.
3. If this was a final release:

   1. Update the current stable branch and remove the pre-release branch in the
      [Django release process](https://code.djangoproject.com/#Djangoreleaseprocess) on Trac.
   2. Update djangoproject.com’s download page ([example PR](https://github.com/django/djangoproject.com/pull/1444)).
4. Se essa for uma release de segurança, atualize [Archive of security issues](/pt-br/5.1/releases/security/) com detalhes dos problemas endereçados.
5. If this was a pre-release, the translation catalogs need to be updated:

   1. Make a new branch from the recently released stable branch:

      ```shell
      git checkout stable/A.B.x
      git checkout -b update-translations-catalog-A.B.x
      ```
   2. Ensure that the release’s dedicated virtual environment is enabled and
      run the following:

      ```shell
      $ cd django
      $ django-admin makemessages -l en --domain=djangojs --domain=django
      processing locale en
      ```
   3. Review the diff before pushing and avoid committing changes to the
      `.po` files without any new translations ([example commit](https://github.com/django/django/commit/d2b1ec551567c208abfdd21b27ff6d08ae1a6371)).
   4. Make a pull request against the corresponding stable branch and merge
      once approved.
   5. Forward port the updated source translations to the `main` branch
      ([example commit](https://github.com/django/django/commit/aed303aff57ac990894b6354af001b0e8ea55f71)).
6. If this was an `rc` pre-release, call for translations for the upcoming
   release in the [Django Forum - Internationalization category](https://forum.djangoproject.com/c/internals/i18n/14).

## Tarefas para novas branches estáveis

Existem várias coisas para fazer no momento posterior a criação de uma nova branch estável (geralmente após uma alpha release). Algumas dessas tarefas não precisam ser feitas pelo releaser.

1. Create a new `DocumentRelease` object in the `docs.djangoproject.com`
   database for the new version’s docs, and update the
   `docs/fixtures/doc_releases.json` JSON fixture, so people without access
   to the production DB can still run an up-to-date copy of the docs site
   ([example PR](https://github.com/django/djangoproject.com/pull/1446)).
2. Criar um esboço de uma nota de release para a nova versão. Use o esboço de versões de releases anteriores ou copie os conteúdos de versões prévias e exclua a maior parte do conteúdo deixando apenas os cabeçalhos.
3. Increase the default PBKDF2 iterations in
   `django.contrib.auth.hashers.PBKDF2PasswordHasher` by about 20%
   (pick a round number). Run the tests, and update the 3 failing
   hasher tests with the new values. Make sure this gets noted in the
   release notes (see the 4.1 release notes for an example).
4. Remova as funcionalidades que chegaram ao fim de seu clico de depreciação. Cada remoção deve ser feita em um commit separado para claridade. Na mensagem de commit, adiciona um “refs #XXXX” para o ticket original onde a depreciação começou se possível.
5. Remove `.. versionadded::`, `.. versionchanged::`, and
   `.. deprecated::` annotations in the documentation from two releases ago.
   For example, in Django 4.2, notes for 4.0 will be removed.
6. Add the new branch to [Read the Docs](https://readthedocs.org/projects/django/). Since the automatically
   generated version names (“stable-A.B.x”) differ from the version names
   used in Read the Docs (“A.B.x”), [create a ticket](https://github.com/readthedocs/readthedocs.org/issues/5537) requesting
   the new version.
7. [Request the new classifier on PyPI](https://github.com/pypa/trove-classifiers/issues/29). For example
   `Framework :: Django :: 3.1`.
8. Update the current branch under active development and add pre-release
   branch in the [Django release process](https://code.djangoproject.com/#Djangoreleaseprocess) on Trac.

## Considerações quanto a configuração da tupla VERSION

O reporte de versões do Django é controlado por uma tupla `VERSION` em `django/__init__.py`. Essa é uma tupla de cinco elementos, cujos elementos são:

1. Versão principal.
2. Versão secundária.
3. Micro versão.
4. Status – pode ser “alpha”, “beta”, “rc” ou “final”.
5. Número das séries, para alpha/beta/RC packages que rodam em sequência (permitindo, por exemplo, “beta 1”, “beta 2”, etc.).

Para uma release final, o status é sempre “final” e o número das séries é sempre 0. Um número de séries 0 com um status “alpha” será reportado como “pre-alpha”.

Alguns exemplos:

- `(4, 1, 1, "final", 0)` → “4.1.1”
- `(4, 2, 0, "alpha", 0)` → “4.2 pre-alpha”
- `(4, 2, 0, "beta", 1)` → “4.2 beta 1”
