Skip to content

Commit

Permalink
release 0.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
shuttie committed Mar 24, 2024
1 parent f39b204 commit 0222d68
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val PLATFORM = Option(System.getenv("PLATFORM")).getOrElse("amd64")

ThisBuild / organization := "ai.metarank"
ThisBuild / scalaVersion := "2.13.13"
ThisBuild / version := "0.7.6-SNAPSHOT-memleak-fix-v2"
ThisBuild / version := "0.7.7"

lazy val root = (project in file("."))
.enablePlugins(DockerPlugin)
Expand Down
2 changes: 1 addition & 1 deletion doc/_toc.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@
* [Building from source](dev/build.md)

### Doc versions
* [0.7.6 (stable)](https://docs.metarank.ai)
* [0.7.7 (stable)](https://docs.metarank.ai)
* [master (unstable)](https://metarank.gitbook.io/metarank-docs-unstable/)
4 changes: 4 additions & 0 deletions doc/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
In a human-readable format. For a technical changelog for robots, see [github releases page](https://github.com/metarank/metarank/releases).
Check our [blog](https://blog.metarank.ai) for more detailed updates.

## 0.7.7

* a bugfix release: race condition in cache invalidation, booster native memleak

## 0.7.6

* [API Warmup support](deploy/warmup.md)
Expand Down
2 changes: 1 addition & 1 deletion doc/deploy/custom-logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To enable structured logging via [logstash-logback-encoder](https://github.com/l
can build a custom Docker image with the following Dockerfile:

```shell
FROM metarank/metarank:0.7.6-amd64
FROM metarank/metarank:0.7.7-amd64

# add logback configuration file to the image
ADD logback.xml /app/
Expand Down
4 changes: 2 additions & 2 deletions doc/deploy/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Official docker images are multi-arch, and cross-built for the following platfor

All metarank sub-commands are wrapped into a single command-line API. To see the [CLI](/doc/cli.md), run the docker container:
```shell
$ docker run metarank/metarank:0.7.6 --help
$ docker run metarank/metarank:0.7.7 --help

+ exec /opt/java/openjdk/bin/java -jar /app/metarank.jar --help

Expand All @@ -21,7 +21,7 @@ $ docker run metarank/metarank:0.7.6 --help
/ \_/ __ \ __\__ \\_ __ \__ \ / \| |/ /
| Y Y \ ___/| | / __ \| | \// __ \| | \ <
|__|_| /\___ >__| (____ /__| (____ /___| /__|_ \
\/ \/ \/ \/ \/ \/ ver:0.7.6
\/ \/ \/ \/ \/ \/ ver:0.7.7
Usage: metarank <subcommand> <options>
```
Expand Down
4 changes: 2 additions & 2 deletions doc/deploy/kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ The Metarank docker container accepts a `JAVA_OPTS` environment variable to cont
## Installing the chart
The chart itself is agnostic to the Metarank version, and has separate versioning. For the latest Metarank `0.7.6` release, use the following command to install the chart:
The chart itself is agnostic to the Metarank version, and has separate versioning. For the latest Metarank `0.7.7` release, use the following command to install the chart:
```shell
helm install metarank . --set-file config=metarank.conf --set image.tag=0.7.6
helm install metarank . --set-file config=metarank.conf --set image.tag=0.7.7
NAME: metarank
LAST DEPLOYED: Tue Oct 4 15:32:47 2022
Expand Down
2 changes: 1 addition & 1 deletion doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Metarank docker images are published on DockerHub as [metarank/metarank](https:/

To start using metarank with docker, just run:
```bash
docker run metarank/metarank:0.7.6 --help
docker run metarank/metarank:0.7.7 --help
```

## JAR File
Expand Down

0 comments on commit 0222d68

Please sign in to comment.