From 97a9f55fa226d8316b61fd864b86b3ec2ec428ed Mon Sep 17 00:00:00 2001 From: thevickypedia Date: Mon, 25 Sep 2023 16:35:29 -0500 Subject: [PATCH] Release `v1.0.3` --- release_notes.rst | 28 +++++++++++++++++++++++++++- vpn/__init__.py | 2 +- 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/release_notes.rst b/release_notes.rst index fb9dd3a..166ab8e 100644 --- a/release_notes.rst +++ b/release_notes.rst @@ -1,13 +1,39 @@ Release Notes ============= -0.1.3 (09/24/2023) +1.0.3 (09/25/2023) ------------------ - Includes bug fixes and upgrades to latest OpenVPN Access Server version - Removes notification features and redundancies - Uses pydantic for validations - Cuts run time in half +0.1.3 (09/24/2023) +------------------ +- Upgrade OpenVPN Access Server version +- Remove notification features +- Use pydantic for validations +- Add custom exceptions +- Include image factory to retrieve AMI IDs +- Disassociate security group before delete +- Reduce redundancy by reusing boto3 clients +- Convert interaction commands into objects +- Add utility scripts to get instance types and regions +- Update release_notes.rst and README.md + +v0.1.3 (09/24/2023) +------------------- +- Upgrade OpenVPN Access Server version +- Remove notification features +- Use pydantic for validations +- Add custom exceptions +- Include image factory to retrieve AMI IDs +- Disassociate security group before delete +- Reduce redundancy by reusing boto3 clients +- Convert interaction commands into objects +- Add utility scripts to get instance types and regions +- Update release_notes.rst and README.md + 0.9.1 (08/30/2023) ------------------ - Includes some minor modifications in type hinting and build process diff --git a/vpn/__init__.py b/vpn/__init__.py index 684db2a..4488bae 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 = "0.1.3" +version = "1.0.3"