Skip to content

Tags: lizongshen/mkcert

Tags

v1.4.3

Toggle v1.4.3's commit message
Fix and update CI analyzers

v1.4.2

Toggle v1.4.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Make explicit "mkcert -help" print to stdout (FiloSottile#265)

Currently "mkcert -help" prints to stderr, which is rather annoying as:

	$ mkcert -help | less

Gives us a blank page, as it pipes only stdout. To get any results in
less I need to use:

	$ mkcert 2>&1 | less
	$ mkcert |& less     # Non-standard bash/ zsh

Since the user explicitly asked for help with -help, it doesn't make
much sense to output it to stderr IMHO.

v1.4.0

Toggle v1.4.0's commit message
Add link to Chocolatey in README (FiloSottile#181)

v1.3.0

Toggle v1.3.0's commit message
Add support for certificate signing requests with -csr

Closes FiloSottile#55

v1.2.0

Toggle v1.2.0's commit message
Refactor output path flags

v1.1.2

Toggle v1.1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
nss: use certutil from $PATH if found on macOS (FiloSottile#71)

Fixes FiloSottile#70

Thanks to @hostep for testing and fixing the patch.

v1.1.1

Toggle v1.1.1's commit message
linux: use unique per-CA names when installing certificates

Fixes FiloSottile#52
Closes FiloSottile#59

v1.1.0

Toggle v1.1.0's commit message
Force go stable to workaround travis-ci/gimme#157

v1.0.1

Toggle v1.0.1's commit message
Add note about iOS bug to README