From 41d91d8e6393d300077e9cdc123e485314495482 Mon Sep 17 00:00:00 2001 From: Isak Ruas Date: Sat, 26 Oct 2024 14:05:59 -0300 Subject: [PATCH] chore: updated project description --- CHANGELOG.md | 5 +++++ SECURITY.md | 1 + pyproject.toml | 23 +++++++++++++++++++++-- src/ecutils/__init__.py | 2 +- 4 files changed, 28 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26e58f8..53995b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v1.1.4] - 2024-10-26 + +### Changed +- Updated project description + ## [v1.1.3] - 2024-10-26 ### Changed diff --git a/SECURITY.md b/SECURITY.md index 94ba85f..0ec0613 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -6,6 +6,7 @@ Use this section to tell people about which versions of your project are current | Version | Supported | | ------- | ------------------ | +| 1.1.4 | :white_check_mark: | | 1.1.3 | :white_check_mark: | | 1.1.2 | :white_check_mark: | | 1.1.1 | :white_check_mark: | diff --git a/pyproject.toml b/pyproject.toml index 6955bae..9357496 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,10 +4,29 @@ build-backend = "hatchling.build" [project] name = "ecutils" -description = "Elliptic Curve Utils" +description = "Python Library for Elliptic Curve Cryptography: key exchanges (Diffie-Hellman, Massey-Omura), ECDSA signatures, and Koblitz encoding. Suitable for crypto education and secure systems." readme = {file = "README.md", content-type = "text/markdown"} license = {text = "MIT"} -keywords = ["ecutils", "ec", "ecdh", "eck", "ecdsa", "ecmo"] +keywords = [ + "ecutils", + "ec", + "ecdh", + "eck", + "ecdsa", + "ecmo", + "secure-communication", + "public-key-cryptography", + "cryptographic-algorithms", + "digital-signatures", + "python-cryptography", + "elliptic-curve-cryptography", + "diffie-hellman-key-exchange", + "ecc-based-protocols", + "message-encoding-and-decoding", + "koblitz-encoding", + "massey-omura-protocol", + "elliptic-curve-operation" +] classifiers = [ "Development Status :: 5 - Production/Stable", "Development Status :: 6 - Mature", diff --git a/src/ecutils/__init__.py b/src/ecutils/__init__.py index 0b2f79d..c72e379 100755 --- a/src/ecutils/__init__.py +++ b/src/ecutils/__init__.py @@ -1 +1 @@ -__version__ = "1.1.3" +__version__ = "1.1.4"