Skip to content

Commit

Permalink
release: v1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartłomiej Święcki committed Nov 21, 2022
1 parent c19fb0f commit 99e4f1e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. This projec
## [Unreleased]


<a name="v1.4.1"></a>
## [v1.4.1] - 2022-11-14
### Changes
- **pkg/server:** Add logs for activities related to users


<a name="v1.4.1-RC1"></a>
## [v1.4.1-RC1] - 2022-11-16
### Bug Fixes
Expand Down Expand Up @@ -3140,7 +3146,8 @@ All notable changes to this project will be documented in this file. This projec
- **tree:** MTH reference impl


[Unreleased]: https://github.com/vchain-us/immudb/compare/v1.4.1-RC1...HEAD
[Unreleased]: https://github.com/vchain-us/immudb/compare/v1.4.1...HEAD
[v1.4.1]: https://github.com/vchain-us/immudb/compare/v1.4.1-RC1...v1.4.1
[v1.4.1-RC1]: https://github.com/vchain-us/immudb/compare/v1.4.0...v1.4.1-RC1
[v1.4.0]: https://github.com/vchain-us/immudb/compare/v1.4.0-RC2...v1.4.0
[v1.4.0-RC2]: https://github.com/vchain-us/immudb/compare/v1.4.0-RC1...v1.4.0-RC2
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export GO111MODULE=on

SHELL=/bin/bash -o pipefail

VERSION=1.4.1-RC1
VERSION=1.4.1
DEFAULT_WEBCONSOLE_VERSION=1.0.18
SERVICES=immudb immuadmin immuclient
TARGETS=linux/amd64 windows/amd64 darwin/amd64 linux/s390x linux/arm64 freebsd/amd64 darwin/arm64
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ Click here to try out the immudb web console access in an [online demo environme

### Getting immudb running: executable

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:
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:

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

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

### Connecting with immuclient

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:
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:

```bash
wget https://github.com/codenotary/immudb/releases/download/v1.4.0/immuclient-v1.4.0-linux-amd64
mv immuclient-v1.4.0-linux-amd64 immuclient
wget https://github.com/codenotary/immudb/releases/download/v1.4.1/immuclient-v1.4.1-linux-amd64
mv immuclient-v1.4.1-linux-amd64 immuclient
chmod +x immuclient

# start the interactive shell
Expand Down
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: immudb
description: The immutable database
type: application
version: 1.4.0
appVersion: "1.4.0"
version: 1.4.1
appVersion: "1.4.1"

0 comments on commit 99e4f1e

Please sign in to comment.