Skip to content

Commit

Permalink
version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
A. Schulze committed Feb 9, 2024
1 parent e915118 commit 61b8c5a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## next
## 2.2.0

- updated Github workflows
- use go-1.21.x
- fix some dependenies
- require golang.org/x/crypto v0.17.0

## 2.1.0

Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/andreasschulze/scmdhttpd

go 1.21
go 1.22

require golang.org/x/crypto v0.14.0
require golang.org/x/crypto v0.17.0

require (
golang.org/x/net v0.17.0 // indirect
Expand Down
4 changes: 3 additions & 1 deletion scmdhttpd.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
const (
certsDir = "certs"
programName = "scmdHTTPd"
programVersion = "2.1.0"
programVersion = "2.2.0"
)

var (
Expand Down Expand Up @@ -250,6 +250,8 @@ func main() {
tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,
tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
}
// disable http2 and higher
srvTLS.TLSConfig.NextProtos = []string{"http/1.0", "http/1.1"}

versionInfo("starting ")

Expand Down

0 comments on commit 61b8c5a

Please sign in to comment.