Releases: yonaskolb/Mint
Releases · yonaskolb/Mint
0.18.0
Added
- Added
outdated
command for listing outdated packages in a Mintfile #237 @AF-cgi - Globally installed packages can now access their own resource artifacts, as they are also linked #265 @jagreenwood
Fixed
Internal
- Update the package to Swift 5.9 #275 @yonaskolb
0.17.5
0.17.4
0.17.3
0.17.2
0.17.0
Fixed
- Fixed package installation on newer versions of macOS and M1 machines #216 @yonaskolb
- Fixed building in Xcode 13 #218 #219 @Armenm
Changed
- The default package install path (
$MINT_PATH
) has changed from/usr/local/lib/mint
to~/.mint
, and the global link path ($MINT_LINK_PATH
) has changed from/usr/local/bin
to~/.mint/bin
. This fixes installation issues on some systems, but in order to run globally installed packages without Mint you'll now need to add~/.mint/bin
to your$PATH
. #216 @yonaskolb
0.16.0
0.15.0
0.14.2
Changed
- Changeed
list
output to show what executables are installed if they differ from package name, and also disambiguate packages with the same name and different sources #170 @acecilia
Fixed
- Fixed the
run
to support when a package with the same name is installed from different origins (for example: yonaskolb/xcodegen and acecilia/xcodegen). #170 @acecilia - Fix the
uninstall
option: previously, the name for the symlink to remove was calculated using the package name passed from command line, which could be partial (for examplesimple
instead ofsimplepackage
), resulting on the symlink not being removed. #170 @acecilia - Fixed installing versions that reference a git sha #172 @yonaskolb
- Added escaping of paths when linking. Avoids an error, when MINT_LINK_PATH contains spaces. @Lutzifer