Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions docs/release-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,28 @@
[Releases tab](https://github.com/MyIntervals/PHP-CSS-Parser/releases),
create a new release and copy the change log entries to the new release.
1. Post about the new release on social media.

## Working with git tags

List all tags:

```bash
git tag
```

Locally create a tag from the current `HEAD` commit and push it to the git
remote `origin`:

```bash
git tag -a v4.2.0 -m "Tag version 4.2.0"
git push --tags
```

Locally create a
[GPG-signed](https://git-scm.com/book/ms/v2/Git-Tools-Signing-Your-Work) tag
from the current `HEAD` commit and push it to the git remote `origin`:

```bash
git tag -a -s v4.2.0 -m "Tag version 4.2.0"
git push --tags
```