Skip to content

Commit c827a71

Browse files
committed
Version 0.8.2
1 parent 2ecc837 commit c827a71

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

Diff for: dist/CHANGES.txt

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
CHANGES
22

3-
<master>
4-
- On-demand TLS can obtain certificates during handshake
3+
0.8.2 (February 25, 2016)
4+
- On-demand TLS can obtain certificates during handshakes
55
- Built with Go 1.6
66
- Process log (-log) is rotated when it gets large
7+
- Managed certificates get renewed 30 days early instead of just 14
78
- fastcgi: Allow scheme prefix before address
89
- markdown: Support for definition lists
910
- proxy: Allow proxy to insecure HTTPS backends
1011
- proxy: Support proxy to unix socket
12+
- rewrite: Status code can be 2xx or 4xx
1113
- templates: New .Markdown action to interpret included file as Markdown
12-
- tls: max_certs setting to set hard limit on-demand TLS
13-
- tls: load certificates from directory
14+
- templates: .Truncate now truncates from end of string when length is negative
15+
- tls: Set hard limit for certificates obtained with on-demand TLS
16+
- tls: Load certificates from directory
17+
- tls: Add SHA384 cipher suites
1418
- Multiple bug fixes and internal changes
1519

1620

Diff for: dist/README.txt

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
1-
CADDY 0.8.1
1+
CADDY 0.8.2
22

33
Website
44
https://caddyserver.com
5+
6+
Twitter
57
@caddyserver
68

79
Source Code
810
https://github.com/mholt/caddy
11+
https://github.com/caddyserver
912

1013

1114
For instructions on using Caddy, please see the user guide on the website.
1215
For a list of what's new in this version, see CHANGES.txt.
1316

17+
Please consider donating to the project if you think it is helpful,
18+
especially if your company is using Caddy. There are also sponsorship
19+
opportunities available!
20+
1421
If you have a question, bug report, or would like to contribute, please open an
1522
issue or submit a pull request on GitHub. Your contributions do not go unnoticed!
1623

Diff for: main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var (
2828

2929
const (
3030
appName = "Caddy"
31-
appVersion = "0.8.1"
31+
appVersion = "0.8.2"
3232
)
3333

3434
func init() {
@@ -40,7 +40,7 @@ func init() {
4040
flag.StringVar(&https.DefaultEmail, "email", "", "Default Let's Encrypt account email address")
4141
flag.DurationVar(&caddy.GracefulTimeout, "grace", 5*time.Second, "Maximum duration of graceful shutdown")
4242
flag.StringVar(&caddy.Host, "host", caddy.DefaultHost, "Default host")
43-
flag.BoolVar(&caddy.HTTP2, "http2", true, "HTTP/2 support")
43+
flag.BoolVar(&caddy.HTTP2, "http2", true, "Use HTTP/2")
4444
flag.StringVar(&logfile, "log", "", "Process log file")
4545
flag.StringVar(&caddy.PidFile, "pidfile", "", "Path to write pid file")
4646
flag.StringVar(&caddy.Port, "port", caddy.DefaultPort, "Default port")

0 commit comments

Comments
 (0)