diff --git a/dist/CHANGES.txt b/dist/CHANGES.txt index 00b837f04..34b69d7d5 100644 --- a/dist/CHANGES.txt +++ b/dist/CHANGES.txt @@ -1,16 +1,20 @@ CHANGES - -- On-demand TLS can obtain certificates during handshake +0.8.2 (February 25, 2016) +- On-demand TLS can obtain certificates during handshakes - Built with Go 1.6 - Process log (-log) is rotated when it gets large +- Managed certificates get renewed 30 days early instead of just 14 - fastcgi: Allow scheme prefix before address - markdown: Support for definition lists - proxy: Allow proxy to insecure HTTPS backends - proxy: Support proxy to unix socket +- rewrite: Status code can be 2xx or 4xx - templates: New .Markdown action to interpret included file as Markdown -- tls: max_certs setting to set hard limit on-demand TLS -- tls: load certificates from directory +- templates: .Truncate now truncates from end of string when length is negative +- tls: Set hard limit for certificates obtained with on-demand TLS +- tls: Load certificates from directory +- tls: Add SHA384 cipher suites - Multiple bug fixes and internal changes diff --git a/dist/README.txt b/dist/README.txt index 532e93f46..e2ec8a24b 100644 --- a/dist/README.txt +++ b/dist/README.txt @@ -1,16 +1,23 @@ -CADDY 0.8.1 +CADDY 0.8.2 Website https://caddyserver.com + +Twitter @caddyserver Source Code https://github.com/mholt/caddy + https://github.com/caddyserver For instructions on using Caddy, please see the user guide on the website. For a list of what's new in this version, see CHANGES.txt. +Please consider donating to the project if you think it is helpful, +especially if your company is using Caddy. There are also sponsorship +opportunities available! + If you have a question, bug report, or would like to contribute, please open an issue or submit a pull request on GitHub. Your contributions do not go unnoticed! diff --git a/main.go b/main.go index ed4449fdd..3d2bae760 100644 --- a/main.go +++ b/main.go @@ -28,7 +28,7 @@ var ( const ( appName = "Caddy" - appVersion = "0.8.1" + appVersion = "0.8.2" ) func init() { @@ -40,7 +40,7 @@ func init() { flag.StringVar(&https.DefaultEmail, "email", "", "Default Let's Encrypt account email address") flag.DurationVar(&caddy.GracefulTimeout, "grace", 5*time.Second, "Maximum duration of graceful shutdown") flag.StringVar(&caddy.Host, "host", caddy.DefaultHost, "Default host") - flag.BoolVar(&caddy.HTTP2, "http2", true, "HTTP/2 support") + flag.BoolVar(&caddy.HTTP2, "http2", true, "Use HTTP/2") flag.StringVar(&logfile, "log", "", "Process log file") flag.StringVar(&caddy.PidFile, "pidfile", "", "Path to write pid file") flag.StringVar(&caddy.Port, "port", caddy.DefaultPort, "Default port")