Description
A small command-line utility to manage CHANGELOG.md written in keepachangelog.com format.
Works nicely on any sized Git repository, even awesome on Monorepo.
Release alternatives and similar packages
Based on the "Command Line" category.
Alternatively, view release alternatives based on common mentions on social networks and blogs.
-
Rich Interactive Widgets for Terminal UIs
Terminal UI library with rich, interactive widgets — written in Golang -
tcell
Tcell is an alternate terminal package, similar in some ways to termbox, but better in others. -
survey
DISCONTINUED. A golang library for building interactive and accessible prompts with full support for windows and posix terminals. -
pterm
✨ #PTerm is a modern Go module to easily beautify console output. Featuring charts, progressbars, tables, trees, text input, select menus and much more 🚀 It's completely configurable and 100% cross-platform compatible. -
cointop
DISCONTINUED. A fast and lightweight interactive terminal based UI application for tracking cryptocurrencies 🚀 -
The Platinum Searcher
A code search tool similar to ack and the_silver_searcher(ag). It supports multi platforms and multi encodings. -
asciigraph
Go package to make lightweight ASCII line graph ╭┈╯ in command line apps with no other dependencies. -
CLI Color
🎨 Terminal color rendering library, support 8/16 colors, 256 colors, RGB color rendering output, support Print/Sprintf methods, compatible with Windows. GO CLI 控制台颜色渲染工具库,支持16色,256色,RGB色彩渲染输出,使用类似于 Print/Sprintf,兼容并支持 Windows 环境的色彩渲染 -
go-size-analyzer
A tool for analyzing the size of compiled Go binaries, offering cross-platform support, detailed breakdowns, and multiple output formats.
InfluxDB - Purpose built for real-time analytics at any scale.
Do you think we are missing an alternative of Release or a related project?
Popular Comparisons
README
Release
A small command-line utility to manage CHANGELOG.md written in keepachangelog.com format.
Works nicely on any sized Git repository, even awesome on Monorepo.
Installation
Please download ZIP archive from releases page.
How it works
Run release
to show full list of commands and flags.
List all CHANGELOG.md
release target
will show you all CHANGELOG.md files recursively.
release target
release target --dir path/to/entrypoint
release t -d path/to/entrypoint
See unreleased changes
release unreleased
will grab [Unreleased]
sections of all CHANGELOG.md files recursively.
release unreleased
release unreleased --dir path/to/entrypoint
release u -d path/to/entrypoint
See previous versions
release show
will output all previous version histories.
release show -v 0.1.0
release show -v 0.1.0 --dir path/to/entrypoint
release s -v 0.1.0 -d path/to/entrypoint
Show the latest released version in current directory
release latest
release latest --newline=false
release l
Bump all [Unreleased] sections to given version
By default, release to -v X.Y.Z
will ask you for confirmation.
release to -v 0.2.0
# Targets
## .github/workflows/CHANGELOG.md
## CHANGELOG.md
✔ Enter `yes` to update all CHANGELOGs to version [0.8.0]: yes
If you want to integrate with CI pipeline, use --force
or -f
.
release to -v 0.2.0 --force
# Targets
## .github/workflows/CHANGELOG.md --> ✅
## CHANGELOG.md --> ✅
Done👍
See next release version
release next
will suggest you the next available version.
release next
Latest released version: 0.8.0
Suggestions for next release:
- Major / Release --> 1.0.0
- Minor / Feature --> 0.9.0
- Patch / Hotfix --> 0.8.1
For CI integrations, add --type
flag.
The words major
, minor
and patch
comes from Semantic Versioning 2.0.0 idiom.
release next --type major
1.0.0
release next --type minor
0.9.0
release next --type patch
0.8.1
Note this command will not add newline when --type
flag is specified.
Use --newline
flag if you prefer to see the newline.
release next --type major --newline
GitFlow idiom is also supported.
release next --type release
1.0.0
release next --type feature
0.9.0
release next --type hotfix
0.8.1
Development
Run
make run
Test
make test
Build
make build
Issues?
MacOS "developer cannot be verified" error
Note MacOS Catalina will warn you when executing this binary in command-line. Follow these steps to give your permission.
- In the Finder on your Mac, unzip the
release
app and open therelease
binary - MacOS will prompt you to enable the binary, so answer yes
- Now you can use the binary from command-line.
License
[Mozilla Public License v2.0](LICENSE)
*Note that all licence references and agreements mentioned in the Release README section above
are relevant to that project's source code only.