Skip to content

Commit 01c7490

Browse files
authored
Merge pull request #573 from aboutcode-org/571_572_docker_issues
Fixed #571 #572 - Fixed the entry point and install requirement
2 parents f33153d + a7bf658 commit 01c7490

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

Diff for: CHANGELOG.rst

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
==============================
22
Changelog
33

4+
2024-09-16
5+
Release 11.0.2
6+
7+
* Fixed the installation issues with docker (#571, #572)
8+
9+
410
2024-08-06
511
Release 11.0.1
612

713
* Update doc formatting
814
* Added fields type and types description into the spec
915
* Update link references of ownership from nexB to aboutcode-org
1016

11-
Signed-off-by: Chin Yeung Li <[email protected]>
12-
1317

1418
2024-07-15
1519
Release 11.0.0

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ RUN bash -c "source ./configure"
3030
# Set entrypoint to be the aboutcode command, allows to run the generated docker image directly with the aboutcode arguments:
3131
# `docker run (...) <containername> <about arguments>`
3232
# Example: docker run --rm --name "aboutcode" -v ${PWD}:/project -v /tmp/result:/result aboutcode-toolkit attrib /project /result/c.html
33-
ENTRYPOINT ["./bin/about"]
33+
ENTRYPOINT ["./about"]

Diff for: about.ABOUT

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
about_resource: .
22
name: AboutCode-toolkit
3-
version: 11.0.1
3+
version: 11.0.2
44
author: Jillian Daguil, Chin Yeung Li, Philippe Ombredanne, Thomas Druez
55
copyright: Copyright (c) nexB Inc.
66
description: |

Diff for: setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ install_requires =
6666
license_expression >= 0.94
6767
openpyxl
6868
packageurl_python >= 0.9.0
69+
requests
6970
saneyaml
7071

7172

Diff for: src/attributecode/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
import saneyaml
2222

23-
__version__ = '11.0.1'
23+
__version__ = '11.0.2'
2424

2525
__about_spec_version__ = '4.0.0'
2626

0 commit comments

Comments
 (0)