Releases: Justintime50/homebrew-releaser
Releases · Justintime50/homebrew-releaser
v2.0.0
- Changes the default
formula_folder
fromformula
toFormula
to follow the Homebrew convention and allow Linux installs to properly find the folder for installs out of the box without additional configuration- macOS is not case sensitive and didn't care about the casing of the directory whereas Linux does
v1.0.0
- Upgrades Python from 3.12 to 3.13
- Fixes a bug that would not generate a proper class name for formula if it contained a digit (closes #47)
v0.19.0
- Adds new
formula_includes
parameter to allow including items in the built formula- eg: including a Python virtual environment, see the Python Docs for more details
v0.18.3
- Corrects regression introduced in
v0.18.2
on the URLs used for public repo asset downloads - Removes the quotes that previously wrapped commit messages unintentionally
- Uses a conventional commit message structure
- Bumps development dependencies
v0.18.2
- Fixes the URLs used to download the default zip/tars for private repos
v0.18.1
- Corrects order of
version
definition in formula generation to satisfy the ever-changing Homebrew audit rules
v0.18.0
- Adds a
version
parameter which can override the automatically detected version of a formula with an explicit value
v0.17.0
- Upgrades from Python 3.11 to Python 3.12
- Corrects
/archive
URLs to the new/archive/refs/tags
URLs to satisfybrew audit
v0.16.7
- Only strip the leading
v
from the version string instead of replacing allv
s with nothing so versions such asv0.1.0.dev0
can be picked up
v0.16.6
- Enables typing in generated formula to appease
brew audit