diff --git a/CHANGELOG.md b/CHANGELOG.md index f3e2852..b93a906 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # Changelog +## v1.1.10 (2024-11-04) + +### Docs + +- use variable logo based on colour scheme +- fix tests badge tests workflow file was renamed + +### Style + +- automatic reformat auto reformat with ruff/docformatter/prettier after config changes + +### Build System(s) + +- remove version from docker compose file version specifier is deprecated + +### CI System(s) + +- fix python setup action version +- add merge to valid commit types +- add docformatter args and dependency docformatter currently can't read from pyproject.toml without tomli +- only apply auto-fixes in pre-commit F401 returns linting errors as well as auto-fixes, so this disables the errors and just applies the fixes +- update tool config update pre-commit repo versions and switch black to ruff +- add pull request validation workflow new workflow to check commit format and code style against pre-commit config +- update workflow files standardise format, change name of tests file + +### Chores/Misc + +- add pull request template +- update tool details in contributing guide + ## v1.1.9 (2024-08-20) ### Chores/Misc diff --git a/CITATION.cff b/CITATION.cff index 65a337f..20d3117 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -17,4 +17,4 @@ keywords: - ckanext - webview license: GPL-3.0-or-later -version: 1.1.9 +version: 1.1.10 diff --git a/pyproject.toml b/pyproject.toml index d204be0..aadfb60 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ckanext-webview" -version = "1.1.9" +version = "1.1.10" description = "A CKAN extension that adds a view for displaying generic/arbitrary URLs." readme = "README.md" requires-python = ">=3.6" @@ -55,7 +55,7 @@ exclude = ["tests", "docs"] [tool.commitizen] name = "cz_nhm" -version = "1.1.9" +version = "1.1.10" tag_format = "v$version" update_changelog_on_bump = true changelog_incremental = true