From d68ab0051e9bbba16878e0297f7ffc21e4a44020 Mon Sep 17 00:00:00 2001 From: Kirill Bychkov Date: Fri, 30 Aug 2019 18:11:16 +1000 Subject: [PATCH 1/2] Update vstutils required version --- polemarch/main/tests/api.py | 2 +- requirements-doc.txt | 2 +- requirements.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/polemarch/main/tests/api.py b/polemarch/main/tests/api.py index c11a9696..4c102f1b 100644 --- a/polemarch/main/tests/api.py +++ b/polemarch/main/tests/api.py @@ -358,7 +358,7 @@ def setUp(self): def test_api_versions_list(self): result = self.get_result("get", "/api/") - self.assertEqual(len(result), 2) + self.assertEqual(len(result), 3) self.assertTrue(result.get(self._settings('VST_API_VERSION'), False)) self.assertTrue(result.get('openapi', False)) diff --git a/requirements-doc.txt b/requirements-doc.txt index 01ca3aab..00bbdcfb 100644 --- a/requirements-doc.txt +++ b/requirements-doc.txt @@ -1,2 +1,2 @@ # Docs -vstutils[doc]~=2.3.10 +vstutils[doc]~=2.6.3 diff --git a/requirements.txt b/requirements.txt index 770a87b9..2908bb12 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ # Main -vstutils[rpc,ldap,doc,prod]~=2.3.10 +vstutils[rpc,ldap,doc,prod]~=2.6.3 docutils==0.15.2 markdown2==2.3.8 From 2339f3aff436ae32a83b5c5bfe6ee54b7df6baf1 Mon Sep 17 00:00:00 2001 From: Sergey Klyuykov Date: Mon, 2 Sep 2019 09:55:47 +1000 Subject: [PATCH 2/2] Release up 1.4.3 --- doc/api_schema.yaml | 14 +++++++------- polemarch/__init__.py | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/api_schema.yaml b/doc/api_schema.yaml index 93d7d96a..0d4b4b55 100755 --- a/doc/api_schema.yaml +++ b/doc/api_schema.yaml @@ -19,9 +19,9 @@ info: url: https://gitlab.com/vstconsulting/polemarch.git Request: - name: Question - url: https://gitlab.com/vstconsulting/polemarch/issues/new?issuable_template%5D=Ask&issue%5Btitle%5D=Ask%20about%20version%201.4.2 + url: https://gitlab.com/vstconsulting/polemarch/issues/new?issuable_template%5D=Ask&issue%5Btitle%5D=Ask%20about%20version%201.4.3 - name: Bug report - url: https://gitlab.com/vstconsulting/polemarch/issues/new?issuable_template%5D=Bug&issue%5Btitle%5D=Bug%20in%20version%201.4.2 + url: https://gitlab.com/vstconsulting/polemarch/issues/new?issuable_template%5D=Bug&issue%5Btitle%5D=Bug%20in%20version%201.4.3 - name: Feature request url: https://gitlab.com/vstconsulting/polemarch/issues/new?issuable_template%5D=Feature%20request&issue%5Btitle%5D= x-menu: @@ -54,11 +54,11 @@ info: span_class: fa fa-plug url: /hook x-versions: - application: 1.4.2 - library: 1.4.2 - vstutils: 2.3.10 - django: 2.2.1 - ansible: 2.8.1 + application: 1.4.3 + library: 1.4.3 + vstutils: 2.6.3 + django: 2.2.4 + ansible: 2.8.4 version: v2 host: localhost:8080 schemes: diff --git a/polemarch/__init__.py b/polemarch/__init__.py index 3f71f8cc..9a9b1b7c 100644 --- a/polemarch/__init__.py +++ b/polemarch/__init__.py @@ -31,6 +31,6 @@ "VST_ROOT_URLCONF": os.getenv("VST_ROOT_URLCONF", 'vstutils.urls'), } -__version__ = "1.4.2" +__version__ = "1.4.3" prepare_environment(**default_settings)