Skip to content

Commit 63f3bc4

Browse files
committed
Bump to v0.11.3
Signed-off-by: Daniel J Walsh <[email protected]>
1 parent 9f2885b commit 63f3bc4

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

docs/ramalama-bench.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ OCI container image to run with specified AI model. RamaLama defaults to using
5353
images based on the accelerator it discovers. For example:
5454
`quay.io/ramalama/ramalama`. See the table below for all default images.
5555
The default image tag is based on the minor version of the RamaLama package.
56-
Version 0.11.2 of RamaLama pulls an image with a `:0.11` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
56+
Version 0.11.3 of RamaLama pulls an image with a `:0.11` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
5757

5858
The default can be overridden in the ramalama.conf file or via the
5959
RAMALAMA_IMAGE environment variable. `export RAMALAMA_IMAGE=quay.io/ramalama/aiimage:1.2` tells

docs/ramalama-perplexity.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ OCI container image to run with specified AI model. RamaLama defaults to using
5858
images based on the accelerator it discovers. For example:
5959
`quay.io/ramalama/ramalama`. See the table below for all default images.
6060
The default image tag is based on the minor version of the RamaLama package.
61-
Version 0.11.2 of RamaLama pulls an image with a `:0.11` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
61+
Version 0.11.3 of RamaLama pulls an image with a `:0.11` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
6262

6363
The default can be overridden in the ramalama.conf file or via the
6464
RAMALAMA_IMAGE environment variable. `export RAMALAMA_IMAGE=quay.io/ramalama/aiimage:1.2` tells

docs/ramalama-rag.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ OCI container image to run with specified AI model. RamaLama defaults to using
5050
images based on the accelerator it discovers. For example:
5151
`quay.io/ramalama/ramalama-rag`. See the table below for all default images.
5252
The default image tag is based on the minor version of the RamaLama package.
53-
Version 0.11.2 of RamaLama pulls an image with a `:0.11` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
53+
Version 0.11.3 of RamaLama pulls an image with a `:0.11` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
5454

5555
The default can be overridden in the ramalama.conf file or via the
5656
RAMALAMA_IMAGE environment variable. `export RAMALAMA_IMAGE=quay.io/ramalama/aiimage:1.2` tells

docs/ramalama-run.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ OCI container image to run with specified AI model. RamaLama defaults to using
6666
images based on the accelerator it discovers. For example:
6767
`quay.io/ramalama/ramalama`. See the table below for all default images.
6868
The default image tag is based on the minor version of the RamaLama package.
69-
Version 0.11.2 of RamaLama pulls an image with a `:0.11` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
69+
Version 0.11.3 of RamaLama pulls an image with a `:0.11` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
7070

7171
The default can be overridden in the ramalama.conf file or via the
7272
RAMALAMA_IMAGE environment variable. `export RAMALAMA_IMAGE=quay.io/ramalama/aiimage:1.2` tells

docs/ramalama-serve.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ OCI container image to run with specified AI model. RamaLama defaults to using
112112
images based on the accelerator it discovers. For example:
113113
`quay.io/ramalama/ramalama`. See the table above for all default images.
114114
The default image tag is based on the minor version of the RamaLama package.
115-
Version 0.11.2 of RamaLama pulls an image with a `:0.11` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
115+
Version 0.11.3 of RamaLama pulls an image with a `:0.11` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
116116

117117
The default can be overridden in the ramalama.conf file or via the
118118
RAMALAMA_IMAGE environment variable. `export RAMALAMA_IMAGE=quay.io/ramalama/aiimage:1.2` tells

docs/ramalama-version.1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Print usage message
1818

1919
```
2020
$ ramalama version
21-
ramalama version 0.11.2
21+
ramalama version 0.11.3
2222
$ ramalama -q version
23-
0.11.2
23+
0.11.3
2424
>
2525
```
2626
## SEE ALSO

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "ramalama"
7-
version = "0.11.2"
7+
version = "0.11.3"
88
description = "RamaLama is a command line tool for working with AI LLM models."
99
readme = "README.md"
1010
requires-python = ">=3.10"

ramalama/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
def version():
5-
return "0.11.2"
5+
return "0.11.3"
66

77

88
def print_version(args):

rpm/ramalama.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%global pypi_name ramalama
22
%global forgeurl https://github.com/containers/%{pypi_name}
33
# see ramalama/version.py
4-
%global version0 0.11.2
4+
%global version0 0.11.3
55
%forgemeta
66

77
%global summary Command line tool for working with AI LLM models
@@ -34,7 +34,7 @@ BuildRequires: python3-pytest
3434
BuildRequires: mailcap
3535

3636
Provides: python3-ramalama = %{version}-%{release}
37-
Obsoletes: python3-ramalama < 0.11.2-1
37+
Obsoletes: python3-ramalama < 0.11.3-1
3838

3939
Requires: podman
4040

0 commit comments

Comments
 (0)