diff --git a/docs/changelog.md b/docs/changelog.md new file mode 100644 index 0000000..fa6e6ef --- /dev/null +++ b/docs/changelog.md @@ -0,0 +1,19 @@ +# Changelog +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). + +## [Unreleased] + +## [0.1.5] - 2021-24-12 + +### Added + + - Full Test Coverage + - Project restructure + - Docker/Docker-Compose for local project testing, linting, etc. + - Github Actions updates + - Documentation + - Added Changelog + - Created a develop branch as default diff --git a/pyproject.toml b/pyproject.toml index c898dcd..1466bce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,11 @@ [tool.poetry] name = "ttp_sros_parser" -version = "0.0.2" +version = "0.1.5" description = "Utility to parse a full SROS Configuration." authors = ["Hugo "] +readme = "README.md" +repository = "https://github.com/h4ndzdatm0ld/ttp_sros_parser" +keywords = ["sros", "ttp", "ttp-templates", "network automation", "nokia", "7750"] [tool.poetry.dependencies] python = "^3.8" diff --git a/ttp_sros_parser/__init__.py b/ttp_sros_parser/__init__.py index 33f9d4a..19f5b01 100644 --- a/ttp_sros_parser/__init__.py +++ b/ttp_sros_parser/__init__.py @@ -1,2 +1,2 @@ """TTP SROS Parser.""" -__version__ = "0.1.0" +__version__ = "0.1.5"