From f7acfcf83e9e9f3db9161ded5b91e4fd13019096 Mon Sep 17 00:00:00 2001 From: thevickypedia Date: Mon, 25 Sep 2023 23:25:30 -0500 Subject: [PATCH] Release prod version `v1.3` Upgrade pydantic version --- release_notes.rst | 13 +++++++++++++ vpn/__init__.py | 2 +- vpn/requirements.txt | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/release_notes.rst b/release_notes.rst index 56d608e..196357c 100644 --- a/release_notes.rst +++ b/release_notes.rst @@ -1,6 +1,19 @@ Release Notes ============= +1.3 (09/25/2023) +---------------- +- Includes bug fixes and upgrades to latest OpenVPN Access Server version +- Removes notification features and redundancies +- Increases security, reliability, performance and overall stability +- Uses pydantic for validations +- Improves run-time by 2x + +1.0.5b (09/25/2023) +------------------- +- Remove unreferenced secondary attributes +- Release beta version v1.0.5b + 1.0.5a (09/25/2023) ------------------- - Remove entrypoint arg for deletion diff --git a/vpn/__init__.py b/vpn/__init__.py index 2322e4c..b666518 100644 --- a/vpn/__init__.py +++ b/vpn/__init__.py @@ -3,4 +3,4 @@ from vpn.main import VPNServer # noqa: F401 from vpn.models import util # noqa: F401 -version = "1.0.5b" +version = "1.3" diff --git a/vpn/requirements.txt b/vpn/requirements.txt index dccb2c7..1f6e3f3 100644 --- a/vpn/requirements.txt +++ b/vpn/requirements.txt @@ -4,5 +4,5 @@ botocore requests paramiko==3.3.1 paramiko-expect==0.3.5 -pydantic==2.3.0 +pydantic==2.4.0 pydantic-settings==2.0.3