An open API service indexing awesome lists of open source software.

https://github.com/simplito/pson-cpp


https://github.com/simplito/pson-cpp

Last synced: 22 days ago
JSON representation

Awesome Lists containing this project

README

          

# pson-cpp

## Releasing
The current release process is managed from the `main` branch. To create a release, create a version tag in the `vX.Y.Z` format on `main`, push the tag to the remote repository, and then create a GitHub Release from the GitHub UI based on that tag. The changelog should also be generated from the GitHub Release UI.

Example Git commands:

```bash
git checkout main
git pull origin main
git tag vX.Y.Z
git push origin vX.Y.Z
```