Skip to content

Commit 99e4f1e

Browse files
author
Bartłomiej Święcki
committed
release: v1.4.1
1 parent c19fb0f commit 99e4f1e

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. This projec
44
## [Unreleased]
55

66

7+
<a name="v1.4.1"></a>
8+
## [v1.4.1] - 2022-11-14
9+
### Changes
10+
- **pkg/server:** Add logs for activities related to users
11+
12+
713
<a name="v1.4.1-RC1"></a>
814
## [v1.4.1-RC1] - 2022-11-16
915
### Bug Fixes
@@ -3140,7 +3146,8 @@ All notable changes to this project will be documented in this file. This projec
31403146
- **tree:** MTH reference impl
31413147

31423148

3143-
[Unreleased]: https://github.com/vchain-us/immudb/compare/v1.4.1-RC1...HEAD
3149+
[Unreleased]: https://github.com/vchain-us/immudb/compare/v1.4.1...HEAD
3150+
[v1.4.1]: https://github.com/vchain-us/immudb/compare/v1.4.1-RC1...v1.4.1
31443151
[v1.4.1-RC1]: https://github.com/vchain-us/immudb/compare/v1.4.0...v1.4.1-RC1
31453152
[v1.4.0]: https://github.com/vchain-us/immudb/compare/v1.4.0-RC2...v1.4.0
31463153
[v1.4.0-RC2]: https://github.com/vchain-us/immudb/compare/v1.4.0-RC1...v1.4.0-RC2

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export GO111MODULE=on
1616

1717
SHELL=/bin/bash -o pipefail
1818

19-
VERSION=1.4.1-RC1
19+
VERSION=1.4.1
2020
DEFAULT_WEBCONSOLE_VERSION=1.0.18
2121
SERVICES=immudb immuadmin immuclient
2222
TARGETS=linux/amd64 windows/amd64 darwin/amd64 linux/s390x linux/arm64 freebsd/amd64 darwin/arm64

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ Click here to try out the immudb web console access in an [online demo environme
8282

8383
### Getting immudb running: executable
8484

85-
You may download the immudb binary from [the latest releases on Github](https://github.com/codenotary/immudb/releases/latest). Once you have downloaded immudb, rename it to `immudb`, make sure to mark it as executable, then run it. The following example shows how to obtain v1.4.0 for linux amd64:
85+
You may download the immudb binary from [the latest releases on Github](https://github.com/codenotary/immudb/releases/latest). Once you have downloaded immudb, rename it to `immudb`, make sure to mark it as executable, then run it. The following example shows how to obtain v1.4.1 for linux amd64:
8686

8787
```bash
88-
wget https://github.com/codenotary/immudb/releases/download/v1.4.0/immudb-v1.4.0-linux-amd64
89-
mv immudb-v1.4.0-linux-amd64 immudb
88+
wget https://github.com/codenotary/immudb/releases/download/v1.4.1/immudb-v1.4.1-linux-amd64
89+
mv immudb-v1.4.1-linux-amd64 immudb
9090
chmod +x immudb
9191

9292
# run immudb in the foreground to see all output
@@ -198,11 +198,11 @@ docker run --net=host -it --entrypoint /bin/sh minio/mc -c "
198198

199199
### Connecting with immuclient
200200

201-
You may download the immuclient binary from [the latest releases on Github](https://github.com/codenotary/immudb/releases/latest). Once you have downloaded immuclient, rename it to `immuclient`, make sure to mark it as executable, then run it. The following example shows how to obtain v1.4.0 for linux amd64:
201+
You may download the immuclient binary from [the latest releases on Github](https://github.com/codenotary/immudb/releases/latest). Once you have downloaded immuclient, rename it to `immuclient`, make sure to mark it as executable, then run it. The following example shows how to obtain v1.4.1 for linux amd64:
202202

203203
```bash
204-
wget https://github.com/codenotary/immudb/releases/download/v1.4.0/immuclient-v1.4.0-linux-amd64
205-
mv immuclient-v1.4.0-linux-amd64 immuclient
204+
wget https://github.com/codenotary/immudb/releases/download/v1.4.1/immuclient-v1.4.1-linux-amd64
205+
mv immuclient-v1.4.1-linux-amd64 immuclient
206206
chmod +x immuclient
207207
208208
# start the interactive shell

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: immudb
33
description: The immutable database
44
type: application
5-
version: 1.4.0
6-
appVersion: "1.4.0"
5+
version: 1.4.1
6+
appVersion: "1.4.1"

0 commit comments

Comments
 (0)