Skip to content

Commit aa2c048

Browse files
author
Adrien Delle Cave
committed
[RELEASE] version: 0.0.17.
Changed license from GPLv2 to GPLv3.
1 parent c9009dd commit aa2c048

File tree

8 files changed

+694
-350
lines changed

8 files changed

+694
-350
lines changed

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
json-dotenv (0.0.17) unstable; urgency=medium
2+
3+
* [RELEASE] version: 0.0.17.
4+
* Changed license from GPLv2 to GPLv3.
5+
6+
-- Adrien DELLE CAVE (Decryptus) <adc@doowan.net> Sat, 07 Sep 2019 22:26:47 +0200
7+
18
json-dotenv (0.0.16) unstable; urgency=medium
29

310
* [RELEASE] version: 0.0.16.

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

LICENSE.txt

Lines changed: 0 additions & 339 deletions
This file was deleted.

RELEASE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.16
1+
0.0.17

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.16
1+
0.0.17

bin/json-dotenv

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3+
# Copyright 2019 doowan
4+
# SPDX-License-Identifier: GPL-3.0-or-later
35
"""
46
json-dotenv
57
"""
@@ -22,7 +24,7 @@ __license__ = """
2224
You should have received a copy of the GNU General Public License
2325
along with this program. If not, see <http://www.gnu.org/licenses/>.
2426
"""
25-
__version__ = '0.0.16'
27+
__version__ = '0.0.17'
2628

2729
import argparse
2830
import json

setup.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: json-dotenv
33
description: json-dotenv
44
author: Adrien Delle Cave
55
author_email: pypi@doowan.net
6-
copyright: '2019 doowan'
7-
release: '0.0.16'
8-
version: '0.0.16'
9-
license: License GPL-2
6+
copyright: '2019 doowan'
7+
release: '0.0.17'
8+
version: '0.0.17'
9+
license: License GPL-3
1010
url: https://github.com/decryptus/json-dotenv
1111
python_requires:
1212
- '>=2.7'
@@ -16,7 +16,7 @@ python_requires:
1616
- '!=3.3.*'
1717
- '!=3.4.*'
1818
classifiers:
19-
- 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)'
19+
- 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
2020
- 'Natural Language :: English'
2121
- 'Operating System :: Unix'
2222
- 'Programming Language :: Python'

setup.yml.j2

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: json-dotenv
33
description: json-dotenv
44
author: Adrien Delle Cave
55
author_email: pypi@doowan.net
6-
copyright: '{{ env('PROJECT_COPYRIGHT_YEAR') }} doowan'
6+
copyright: '{{ env('PROJECT_COPYRIGHT_YEAR') }} doowan'
77
release: '{{ env('PROJECT_RELEASE') }}'
88
version: '{{ env('PROJECT_VERSION') }}'
9-
license: License GPL-2
9+
license: License GPL-3
1010
url: https://github.com/decryptus/json-dotenv
1111
python_requires:
1212
- '>=2.7'
@@ -16,7 +16,7 @@ python_requires:
1616
- '!=3.3.*'
1717
- '!=3.4.*'
1818
classifiers:
19-
- 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)'
19+
- 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
2020
- 'Natural Language :: English'
2121
- 'Operating System :: Unix'
2222
- 'Programming Language :: Python'

0 commit comments

Comments
 (0)