Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/offa/release-tool
Tool to create project releases.
https://github.com/offa/release-tool
project release release-automation release-management
Last synced: about 2 hours ago
JSON representation
Tool to create project releases.
- Host: GitHub
- URL: https://github.com/offa/release-tool
- Owner: offa
- License: gpl-3.0
- Created: 2019-03-05T19:20:32.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-11T18:33:27.000Z (7 months ago)
- Last Synced: 2024-04-12T00:00:54.779Z (7 months ago)
- Topics: project, release, release-automation, release-management
- Language: Python
- Homepage:
- Size: 178 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Release Tool
[![CI](https://github.com/offa/release-tool/workflows/ci/badge.svg)](https://github.com/offa/release-tool/actions)
[![GitHub release](https://img.shields.io/github/release/offa/release-tool.svg)](https://github.com/offa/release-tool/releases)
[![License](https://img.shields.io/badge/license-GPLv3-yellow.svg)](LICENSE)
![Python 3.9](https://img.shields.io/badge/python-3.9-green.svg)Tool to create project releases of CMake based projects.
1. Check for uncommitted files
1. Update version info
1. Update Repository
1. Commit version change
1. Tag new version
1. *(Optional)* Set next version## Usage
Use `releasetool --help` for a full list.
```bash
# Create a release 1.2.3 of the project in the current directory
releasetool -r 1.2.3# Create a release 4.5.6 of the project in example/project directory
releasetool -r 4.5.6 example/project
```