diff --git a/README.md b/README.md index f69c81e..c2d2180 100644 --- a/README.md +++ b/README.md @@ -56,10 +56,10 @@ pip install containerimage-py 1. Clone this repository 2. [Build the project from source](#build) 3. Locate the `.whl` (wheel) file in the `dist` folder - - It should be named something like so: `containerimage_py-1.1.0-py3-none-any.whl` + - It should be named something like so: `containerimage_py-1.1.1-py3-none-any.whl` 4. Run the following command from the root of the repository, replacing the name of the `.whl` file if necessary ``` - pip install dist/containerimage_py-1.1.0-py3-none-any.whl + pip install dist/containerimage_py-1.1.1-py3-none-any.whl ``` ## Build diff --git a/doc/source/conf.py b/doc/source/conf.py index 8c6b0d4..7425e5d 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -20,7 +20,7 @@ project = 'containerimage-py' copyright = '2025, IBM Corporation' author = 'Ethan Balcik' -release = '1.1.0' +release = '1.1.1' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/doc/source/index.rst b/doc/source/index.rst index 3123643..33af38c 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -58,12 +58,12 @@ Run the following command to install the latest version of this package using pi 1. Clone `the source repository `_ 2. Build the project from source following `the build instructions `_ -3. Locate the ``.whl`` (wheel) file in the ``dist`` folder. It should be named something like so: ``containerimage_py-1.1.0-py3-none-any.whl`` +3. Locate the ``.whl`` (wheel) file in the ``dist`` folder. It should be named something like so: ``containerimage_py-1.1.1-py3-none-any.whl`` 4. Run the following command from the root of the repository, replacing the name of the ``.whl`` file if necessary .. code-block:: shell - pip install dist/containerimage_py-1.1.0-py3-none-any.whl + pip install dist/containerimage_py-1.1.1-py3-none-any.whl Build diff --git a/image/linter.py b/image/linter.py index 136bb01..5dde9a4 100644 --- a/image/linter.py +++ b/image/linter.py @@ -381,12 +381,12 @@ def lint( else: manifests.append(manifest) results.extend(self.manifest_linter.lint(manifest, config)) - config = ContainerImage.get_config_static( + img_config = ContainerImage.get_config_static( ref=artifact, manifest=manifest, auth=AUTH ) - results.extend(self.config_linter.lint(config, config)) + results.extend(self.config_linter.lint(img_config, config)) # Even though it should always exist, this is protection against OOB if len(self.rules) > 0: