From 3a8c3000cd2f019725e08c9b735b1f1caef617e5 Mon Sep 17 00:00:00 2001 From: Ian Cooke Date: Fri, 16 Feb 2024 10:47:50 -0500 Subject: [PATCH 1/3] add markdownlint config and pre-commit hook --- .markdownlint.yml | 11 +++++++++++ .pre-commit-config.yaml | 4 ++++ 2 files changed, 15 insertions(+) create mode 100644 .markdownlint.yml diff --git a/.markdownlint.yml b/.markdownlint.yml new file mode 100644 index 0000000..a027192 --- /dev/null +++ b/.markdownlint.yml @@ -0,0 +1,11 @@ +MD013: + line_length: 88 + heading_line_length: 88 + code_block_line_length: 100 + +MD024: + siblings_only: true + +MD053: + ignored_definitions: + - "unreleased" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a1bf31d..e85f298 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -60,6 +60,10 @@ repos: language: system types: [text] stages: [commit, push, manual] + - repo: https://github.com/igorshubovych/markdownlint-cli + rev: v0.38.0 + hooks: + - id: markdownlint - repo: https://github.com/pre-commit/mirrors-prettier rev: v2.6.0 hooks: From b7e0260c089bc472d4693e98506a333b9342f5e8 Mon Sep 17 00:00:00 2001 From: Ian Cooke Date: Fri, 16 Feb 2024 11:09:31 -0500 Subject: [PATCH 2/3] pin until moto v5 upgrade of tests can occur --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 5be0491..0395825 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,7 +1,7 @@ pytest>=6.2 pytest-cov>=2.9 flake8>=5.0 -moto>=1.3.16 +moto>=1.3.16,<5 black>=22.8 isort>=5.10 mypy>=0.981 From 7fb7c55febb41d02958122ca8cc718b6c6a30a59 Mon Sep 17 00:00:00 2001 From: Ian Cooke Date: Fri, 16 Feb 2024 10:49:16 -0500 Subject: [PATCH 3/3] Update CHANGELOG.md for release v0.1.1 --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e278629..1bde068 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [v0.1.1] - 2024-02-16 ### Fixed + - CLI `run-workflow` dropped an `s` from `json.loads`, and the help text on the timout argument was incorrect. ([#5](https://github.com/cirrus-geo/cirrus-mgmt/pull/5)) @@ -31,6 +32,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. Initial release -[unreleased]: https://github.com/cirrus-geo/cirrus-mgmt/compare/v0.1.0...main +[unreleased]: https://github.com/cirrus-geo/cirrus-mgmt/compare/v0.1.1...main +[v0.1.1]: https://github.com/cirrus-geo/cirrus-mgmt/compare/v0.1.0...v0.1.1 [v0.1.0]: https://github.com/cirrus-geo/cirrus-mgmt/compare/v0.1.0a...v0.1.0 [v0.1.0a]: https://github.com/cirrus-geo/cirrus-mgmt/releases/tag/v0.1.0a