Skip to content

Commit e435c26

Browse files
committed
1.4.1
1 parent d280073 commit e435c26

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
v1.4.1
2+
======
3+
4+
* fix server crash on 32-bit architectures (due to [this](https://golang.org/src/sync/atomic/doc.go?s=1207:1656#L36)), see more details in [#74](https://github.com/centrifugal/centrifugo/issues/74).
5+
* fix compatibility with gocent introduced in v1.4.0
6+
7+
18
v1.4.0
29
======
310

Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM centos:7
22

3-
ENV VERSION 1.4.0
3+
ENV VERSION 1.4.1
44

5-
ENV CENTRIFUGO_SHA256 65e1ec92ad8c6c65f04ec9bd6af3eb2b19559fe2caff22724f0681bd66680bf1
5+
ENV CENTRIFUGO_SHA256 effe5444fd01a93644e2f6153412ce2a1d3b617d8d626c5627698279f1788637
66

77
ENV DOWNLOAD https://github.com/centrifugal/centrifugo/releases/download/v$VERSION/centrifugo-$VERSION-linux-amd64.zip
88

@@ -29,3 +29,4 @@ USER centrifugo
2929
CMD ["centrifugo"]
3030

3131
EXPOSE 8000
32+

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ package main
22

33
const (
44
// VERSION of Centrifugo server.
5-
VERSION = "1.4.0"
5+
VERSION = "1.4.1"
66
)

0 commit comments

Comments
 (0)