From 9880d65e35caad3a55fee71cb676b00c03123d36 Mon Sep 17 00:00:00 2001 From: DAVID Axel <axel.david@etu.univ-amu.fr> Date: Sun, 7 May 2023 13:14:18 +0200 Subject: [PATCH] docs: :memo: Update CHANGELOG closes #2 #4 --- CHANGELOG.md | 20 ++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01c24a0..36623f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,26 @@ 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). +## [2.0.0] - 2023-05-07 + +Stable version of Vigenere-API. +This update provides an OpenAPI interface to use Vigenere algorithm. +You can cipher and decipher content. + +### Added features: + +- Vigenere algorithm [#1](https://etulab.univ-amu.fr/d19006523/vigenere-api/-/issues/2). + - Cipher method at the address: /api/v2/vigenere/decipher + - Decipher method at the address: /api/v2/vigenere/decipher + + You need to use the POST method to send the JSON content to cipher or decipher.<br> + The JSON format is: + "content": str + "key": str +- Provides links to use Caesar algorithm in the V2 API. + - Cipher method at the address: /api/v2/caesar/decipher + - Decipher method at the address: /api/v2/caesar/decipher + ## [1.0.0] - 2023-05-06 First stable version of Vigenere-API. diff --git a/pyproject.toml b/pyproject.toml index 075aa3f..3a9a9a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Vigenere-API" -version = "1.0.0" +version = "2.0.0" description = """\ The project provides an API to use cipher, decipher and decrypt method with the Vigenere algorithm.\ The Caesar algorithm is provided for the cipher method and decipher method.\ -- GitLab