diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b54987bf..67d87d94 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ ============================== Changelog +2024-09-16 + Release 11.0.2 + + * Fixed the installation issues with docker (#571, #572) + + 2024-08-06 Release 11.0.1 @@ -8,8 +14,6 @@ Changelog * Added fields type and types description into the spec * Update link references of ownership from nexB to aboutcode-org -Signed-off-by: Chin Yeung Li - 2024-07-15 Release 11.0.0 diff --git a/Dockerfile b/Dockerfile index 520d762e..0bb67e2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,4 +30,4 @@ RUN bash -c "source ./configure" # Set entrypoint to be the aboutcode command, allows to run the generated docker image directly with the aboutcode arguments: # `docker run (...) ` # Example: docker run --rm --name "aboutcode" -v ${PWD}:/project -v /tmp/result:/result aboutcode-toolkit attrib /project /result/c.html -ENTRYPOINT ["./bin/about"] +ENTRYPOINT ["./about"] diff --git a/about.ABOUT b/about.ABOUT index d22f262d..a4c08ef1 100644 --- a/about.ABOUT +++ b/about.ABOUT @@ -1,6 +1,6 @@ about_resource: . name: AboutCode-toolkit -version: 11.0.1 +version: 11.0.2 author: Jillian Daguil, Chin Yeung Li, Philippe Ombredanne, Thomas Druez copyright: Copyright (c) nexB Inc. description: | diff --git a/setup.cfg b/setup.cfg index 95b1e997..65bdb747 100644 --- a/setup.cfg +++ b/setup.cfg @@ -66,6 +66,7 @@ install_requires = license_expression >= 0.94 openpyxl packageurl_python >= 0.9.0 + requests saneyaml diff --git a/src/attributecode/__init__.py b/src/attributecode/__init__.py index 171e56a4..4c77da0d 100644 --- a/src/attributecode/__init__.py +++ b/src/attributecode/__init__.py @@ -20,7 +20,7 @@ import saneyaml -__version__ = '11.0.1' +__version__ = '11.0.2' __about_spec_version__ = '4.0.0'