Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed #571 #572 - Fixed the entry point and install requirement #573

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
==============================
Changelog

2024-09-16
Release 11.0.2

* Fixed the installation issues with docker (#571, #572)


2024-08-06
Release 11.0.1

* Update doc formatting
* 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 <tli@nexb.com>


2024-07-15
Release 11.0.0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 (...) <containername> <about arguments>`
# 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"]
2 changes: 1 addition & 1 deletion about.ABOUT
Original file line number Diff line number Diff line change
@@ -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: |
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ install_requires =
license_expression >= 0.94
openpyxl
packageurl_python >= 0.9.0
requests
saneyaml


Expand Down
2 changes: 1 addition & 1 deletion src/attributecode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

import saneyaml

__version__ = '11.0.1'
__version__ = '11.0.2'

__about_spec_version__ = '4.0.0'

Expand Down
Loading