https://github.com/simplito/pson-cpp
https://github.com/simplito/pson-cpp
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/simplito/pson-cpp
- Owner: simplito
- License: other
- Created: 2024-10-29T16:14:19.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-05T08:30:16.000Z (over 1 year ago)
- Last Synced: 2025-03-04T02:39:50.181Z (over 1 year ago)
- Language: C++
- Size: 24.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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
```