Skip to content

Commit bf68cfd

Browse files
committed
Bump to 0.11.0
Signed-off-by: Daniel J Walsh <[email protected]>
1 parent 8ab242f commit bf68cfd

File tree

10 files changed

+11
-11
lines changed

10 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.10.0 of RamaLama pulls an image with a `:0.10` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
56+
Version 0.11.0 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.10.0 of RamaLama pulls an image with a `:0.10` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
61+
Version 0.11.0 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
@@ -49,7 +49,7 @@ OCI container image to run with specified AI model. RamaLama defaults to using
4949
images based on the accelerator it discovers. For example:
5050
`quay.io/ramalama/ramalama-rag`. See the table below for all default images.
5151
The default image tag is based on the minor version of the RamaLama package.
52-
Version 0.10.0 of RamaLama pulls an image with a `:0.10` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
52+
Version 0.11.0 of RamaLama pulls an image with a `:0.11` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
5353

5454
The default can be overridden in the ramalama.conf file or via the
5555
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.10.0 of RamaLama pulls an image with a `:0.10` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
69+
Version 0.11.0 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
@@ -98,7 +98,7 @@ OCI container image to run with specified AI model. RamaLama defaults to using
9898
images based on the accelerator it discovers. For example:
9999
`quay.io/ramalama/ramalama`. See the table above for all default images.
100100
The default image tag is based on the minor version of the RamaLama package.
101-
Version 0.10.0 of RamaLama pulls an image with a `:0.10` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
101+
Version 0.11.0 of RamaLama pulls an image with a `:0.11` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
102102

103103
The default can be overridden in the ramalama.conf file or via the
104104
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.10.0
21+
ramalama version 0.11.0
2222
$ ramalama -q version
23-
0.10.0
23+
0.11.0
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.10.1"
7+
version = "0.11.0"
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.10.1"
5+
return "0.11.0"
66

77

88
def print_version(args):

rpm/ramalama.spec

Lines changed: 1 addition & 1 deletion
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.10.1
4+
%global version0 0.11.0
55
%forgemeta
66

77
%global summary Command line tool for working with AI LLM models

scripts/newver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ if [[ "$#" != 2 ]]; then
55
fi
66
curversion=$1
77
newversion=$2
8-
sed "s/${curversion}/${newversion}/g" -i pyproject.toml ramalama/version.py rpm/ramalama.spec
8+
sed "s/${curversion}/${newversion}/g" -i pyproject.toml ramalama/version.py rpm/ramalama.spec docs/ramalama*.md

0 commit comments

Comments
 (0)