From fefbf65b02d3607d541ad90f789fb55e7dff656f Mon Sep 17 00:00:00 2001 From: Dorian Turba <froggit.commit.z3jqj@simplelogin.com> Date: Wed, 8 May 2024 15:46:22 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.1=20=E2=86=92=200.1.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .pre-commit-config.yaml | 5 ----- CHANGELOG.md | 6 ++++++ CONTRIBUTING.md | 26 -------------------------- pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 32 deletions(-) delete mode 100644 .pre-commit-config.yaml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml deleted file mode 100644 index 4c03fb4..0000000 --- a/.pre-commit-config.yaml +++ /dev/null @@ -1,5 +0,0 @@ -repos: - - repo: https://github.com/jackdewinter/pymarkdown - rev: v0.9.19 - hooks: - - id: pymarkdown diff --git a/CHANGELOG.md b/CHANGELOG.md index 235ec0a..6c8e812 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.2] - 2024-05-08 + +### Fixed + +* release-by-changelog include url + ## [0.1.1] - 2024-05-08 ### Fixed diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9b3c692..0b2a5c8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,32 +2,6 @@ ## Development environment -### Quality Standards - -#### Style Guide - -#### Pre-commit hooks - -Please use the pre-commit hooks provided in this repository to maintain consistency in -the codebase. - -```bash -pip install --upgrade pip -pip install pre-commit -pre-commit install -``` - -You can manually run the pre-commit hooks on all files: - -```bash -pre-commit autoupdate -pre-commit run --all-files -``` - -This will run the following hooks: - -- `pymarkdown` - ### Generate requirements ```shell diff --git a/pyproject.toml b/pyproject.toml index be295b2..4ed4641 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ plugins.line-length.enabled = false allow-dirty = true commit = true config-file = "pyproject.toml" -current_version = "0.1.1" +current_version = "0.1.2" parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)" replace = "{new_version}" search = "{current_version}" -- GitLab