Skip to content

Commit

Permalink
Release version: 0.1.40
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien Delle Cave committed Dec 24, 2021
1 parent f08af87 commit 4ec6957
Show file tree
Hide file tree
Showing 13 changed files with 41 additions and 106 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
nsaproxy (0.1.40) unstable; urgency=medium

* Release version: 0.1.40

-- Adrien DELLE CAVE (Decryptus) <adrien.delle.cave@commandersact.com> Fri, 24 Dec 2021 13:05:30 +0100

nsaproxy (0.1.39) unstable; urgency=medium

* Release version: 0.1.39
Expand Down
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.39
0.1.40
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.39
0.1.40
26 changes: 5 additions & 21 deletions bin/nsaproxy
Original file line number Diff line number Diff line change
@@ -1,26 +1,10 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
nsaproxy
"""

__license__ = """
Copyright (C) 2018 fjord-technologies
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
__version__ = '0.1.39'
# Copyright (C) 2018-2021 fjord-technologies
# SPDX-License-Identifier: GPL-3.0-or-later
"""nsaproxy"""

__version__ = '0.1.40'

# TODO: load Python logging configuration (using standard logging.config)

Expand Down
2 changes: 1 addition & 1 deletion nsaproxy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__all__ = ['modules', 'objects', 'plugins']
__all__ = ['classes', 'modules', 'plugins']
4 changes: 4 additions & 0 deletions nsaproxy/classes/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2018-2021 fjord-technologies
# SPDX-License-Identifier: GPL-3.0-or-later

import re as _re
import os as _os

Expand Down
25 changes: 4 additions & 21 deletions nsaproxy/classes/apis.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,7 @@
# -*- coding: utf-8 -*-
"""nsaproxy apis"""

__author__ = "Adrien DELLE CAVE <adc@doowan.net>"
__license__ = """
Copyright (C) 2018 fjord-technologies
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA..
"""
# Copyright (C) 2018-2021 fjord-technologies
# SPDX-License-Identifier: GPL-3.0-or-later
"""nsaproxy.classes.apis"""

import abc
import logging
Expand All @@ -30,7 +13,7 @@

from dwho.classes.plugins import DWhoPluginBase

LOG = logging.getLogger('nsaproxy.apis')
LOG = logging.getLogger('nsaproxy.apis')


class NSAProxyApisSync(dict):
Expand Down
4 changes: 4 additions & 0 deletions nsaproxy/modules/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2018-2021 fjord-technologies
# SPDX-License-Identifier: GPL-3.0-or-later

import re as _re
import os as _os

Expand Down
22 changes: 3 additions & 19 deletions nsaproxy/modules/pdns.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,7 @@
# -*- coding: utf-8 -*-
"""pdns module"""

__license__ = """
Copyright (C) 2018 fjord-technologies
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA..
"""
# Copyright (C) 2018-2021 fjord-technologies
# SPDX-License-Identifier: GPL-3.0-or-later
"""nsaproxy.modules.pdns"""

import json
import logging
Expand Down
4 changes: 4 additions & 0 deletions nsaproxy/plugins/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2018-2021 fjord-technologies
# SPDX-License-Identifier: GPL-3.0-or-later

import re as _re
import os as _os

Expand Down
23 changes: 3 additions & 20 deletions nsaproxy/plugins/cdns.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,7 @@
# -*- coding: utf-8 -*-
"""cdns plugin"""

__author__ = "Adrien DELLE CAVE"
__license__ = """
Copyright (C) 2018 fjord-technologies
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA..
"""
# Copyright (C) 2018-2021 fjord-technologies
# SPDX-License-Identifier: GPL-3.0-or-later
"""nsaproxy.plugins.cdns"""

import json
import logging
Expand Down
23 changes: 3 additions & 20 deletions nsaproxy/plugins/r53.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,7 @@
# -*- coding: utf-8 -*-
"""r53 plugin"""

__author__ = "Adrien DELLE CAVE"
__license__ = """
Copyright (C) 2018 fjord-technologies
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA..
"""
# Copyright (C) 2018-2021 fjord-technologies
# SPDX-License-Identifier: GPL-3.0-or-later
"""nsaproxy.plugins.r53"""

import json
import logging
Expand Down
4 changes: 2 additions & 2 deletions setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ description: nsaproxy
author: Adrien Delle Cave
author_email: pypi@doowan.net
copyright: '2021 fjord-technologies'
release: '0.1.39'
version: '0.1.39'
release: '0.1.40'
version: '0.1.40'
license: License GPL-3
url: https://github.com/decryptus/nsaproxy
python_requires:
Expand Down

0 comments on commit 4ec6957

Please sign in to comment.