Skip to content

Commit 982e70d

Browse files
committed
Bump to v0.8.2
Signed-off-by: Daniel J Walsh <[email protected]>
1 parent 969e0f6 commit 982e70d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ramalama"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
dependencies = [
55
"argcomplete",
66
]

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-
version = "0.8.1"
5+
version = "0.8.2"
66
return version
77

88

rpm/python-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.8.1
4+
%global version0 0.8.2
55
%forgemeta
66

77
%global summary RamaLama is a command line tool for working with AI LLM models

scripts/release-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ release-arm() {
3333
release-ramalama() {
3434
digest=$(podman image inspect "${REPO}/$1" --format '{{ .Digest }}' | cut -f2 -d':')
3535
podman push "${REPO}/$1" "${REPO}/$1:${digest}"
36-
podman push "${REPO}/$1" "${REPO}/$1":0.8.1
36+
podman push "${REPO}/$1" "${REPO}/$1":0.8.2
3737
podman push "${REPO}/$1" "${REPO}/$1":0.8
3838
podman push "${REPO}/$1"
3939
}

scripts/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ release() {
2828
podman manifest inspect "$1"
2929
digest=$(podman image inspect "${DEST}" --format '{{ .Digest }}' | cut -f2 -d':')
3030
podman manifest push --all "$1" "${DEST}:${digest}"
31-
podman manifest push --all "$1" "${DEST}":0.8.1
31+
podman manifest push --all "$1" "${DEST}":0.8.2
3232
podman manifest push --all "$1" "${DEST}":0.8
3333
podman manifest push --all "$1" "${DEST}"
3434
podman manifest rm "$1"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def find_package_modules(self, package, package_dir):
7474

7575
setuptools.setup(
7676
name="ramalama",
77-
version="0.8.1",
77+
version="0.8.2",
7878
packages=find_packages(),
7979
cmdclass={"build_py": build_py},
8080
scripts=["bin/ramalama"],

0 commit comments

Comments
 (0)