Skip to content

Commit edb1292

Browse files
authored
Merge pull request #1912 from rhatdan/VERSION
Bump to v0.12.2
2 parents f1f3618 + a8af492 commit edb1292

File tree

10 files changed

+15
-12
lines changed

10 files changed

+15
-12
lines changed

docs/ramalama-bench.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.12.1 of RamaLama pulls an image with a `:0.12` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
61+
Version 0.12.2 of RamaLama pulls an image with a `:0.12` 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-perplexity.1.md

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

6666
The default can be overridden in the ramalama.conf file or via the
6767
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.12.1 of RamaLama pulls an image with a `:0.12` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
53+
Version 0.12.2 of RamaLama pulls an image with a `:0.12` 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
@@ -72,7 +72,7 @@ OCI container image to run with specified AI model. RamaLama defaults to using
7272
images based on the accelerator it discovers. For example:
7373
`quay.io/ramalama/ramalama`. See the table below for all default images.
7474
The default image tag is based on the minor version of the RamaLama package.
75-
Version 0.12.1 of RamaLama pulls an image with a `:0.12` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
75+
Version 0.12.2 of RamaLama pulls an image with a `:0.12` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
7676

7777
The default can be overridden in the ramalama.conf file or via the
7878
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
@@ -118,7 +118,7 @@ OCI container image to run with specified AI model. RamaLama defaults to using
118118
images based on the accelerator it discovers. For example:
119119
`quay.io/ramalama/ramalama`. See the table above for all default images.
120120
The default image tag is based on the minor version of the RamaLama package.
121-
Version 0.12.1 of RamaLama pulls an image with a `:0.12` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
121+
Version 0.12.2 of RamaLama pulls an image with a `:0.12` tag from the quay.io/ramalama OCI repository. The --image option overrides this default.
122122

123123
The default can be overridden in the ramalama.conf file or via the
124124
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.12.1
21+
ramalama version 0.12.2
2222
$ ramalama -q version
23-
0.12.1
23+
0.12.2
2424
>
2525
```
2626
## SEE ALSO

pyproject.toml

Lines changed: 4 additions & 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.12.1"
7+
dynamic = ["version"]
88
description = "RamaLama is a command line tool for working with AI LLM models."
99
readme = "README.md"
1010
requires-python = ">=3.10"
@@ -74,6 +74,9 @@ ramalama = "ramalama.cli:main"
7474
include-package-data = true
7575
license-files = ["LICENSE"]
7676

77+
[tool.setuptools.dynamic]
78+
version = {attr = "ramalama.version.version"}
79+
7780
[tool.black]
7881
line-length = 120
7982
skip-string-normalization = true

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.12.1"
5+
return "0.12.2"
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.12.1
4+
%global version0 0.12.2
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.12.1-1
37+
Obsoletes: python3-ramalama < 0.12.2-1
3838

3939
Requires: podman
4040

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 docs/ramalama*.md
8+
sed "s/${curversion}/${newversion}/g" -i ramalama/version.py rpm/ramalama.spec docs/ramalama*.md

0 commit comments

Comments
 (0)