Skip to content

Commit 1ce4046

Browse files
committed
Update version and docs
1 parent 03235f7 commit 1ce4046

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

REFERENCE.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ Options
8383
$ about attrib --vartext "title=Attribution Notice" --vartext "header=Product 101" LOCATION OUTPUT
8484

8585
Users can use the following in the template to get the vartext:
86-
{{ vartext_dict['title'] }}
87-
{{ vartext_dict['header'] }}
86+
{{ variables['title'] }}
87+
{{ variables['header'] }}
8888

8989
--verbose
9090

about.ABOUT

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
about_resource: .
22
name: AboutCode-toolkit
3-
version: 4.0.1
3+
version: 4.0.2
44
author: Jillian Daguil, Chin Yeung Li, Philippe Ombredanne, Thomas Druez
5-
copyright: Copyright (c) 2013-2019 nexB Inc.
5+
copyright: Copyright (c) 2013-2020 nexB Inc.
66
description: |
77
AboutCode Toolkit is a tool to process ABOUT files. An ABOUT file
88
provides a simple way to document the provenance (origin and license)

docs/CHANGELOG.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
2019-xx-xx
1+
2020-05-05
22
Release 4.0.2
33

44
* Upgrade license-expression library to v1.2
5+
* Fix the missing `multi_sort` filter for Jinja2
6+
* Update help text for `--vartext`
57

68

79
2019-10-17

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def read(*names, **kwargs):
2424

2525
setup(
2626
name='aboutcode-toolkit',
27-
version='4.0.1',
27+
version='4.0.2',
2828
license='Apache-2.0',
2929
description=(
3030
'AboutCode-toolkit is a tool to document the provenance (origin and license) of '

src/attributecode/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf8 -*-
33

44
# ============================================================================
5-
# Copyright (c) 2013-2019 nexB Inc. http://www.nexb.com/ - All rights reserved.
5+
# Copyright (c) 2013-2020 nexB Inc. http://www.nexb.com/ - All rights reserved.
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.
88
# You may obtain a copy of the License at
@@ -31,12 +31,12 @@
3131

3232
import saneyaml
3333

34-
__version__ = '4.0.1'
34+
__version__ = '4.0.2'
3535

3636
__about_spec_version__ = '3.1.4'
3737

3838
__copyright__ = """
39-
Copyright (c) 2013-2019 nexB Inc. All rights reserved. http://dejacode.org
39+
Copyright (c) 2013-2020 nexB Inc. All rights reserved. http://dejacode.org
4040
Licensed under the Apache License, Version 2.0 (the "License");
4141
you may not use this file except in compliance with the License.
4242
You may obtain a copy of the License at

0 commit comments

Comments
 (0)