From 49cb6de516af2ad0de40ce1058baa4b24acd43f5 Mon Sep 17 00:00:00 2001 From: Matt Kramer Date: Fri, 1 Nov 2024 16:08:34 -0500 Subject: [PATCH] Add CHANGELOG with messaging about the repo move (#1) * Add .pre-commit-config.yaml * Add basic CHANGELOG.md --- .pre-commit-config.yaml | 41 +++++++++++++++++++++++++++++++++++++++++ CHANGELOG.md | 12 ++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 .pre-commit-config.yaml create mode 100644 CHANGELOG.md diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..71d8e92 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,41 @@ +# This is the configuration for pre-commit, a local framework for managing pre-commit hooks +# Check out the docs at: https://pre-commit.com/ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v5.0.0 + hooks: + - id: check-json + - id: pretty-format-json + args: [--autofix] + - id: check-yaml + args: [--allow-multiple-documents] + - id: end-of-file-fixer + - id: trailing-whitespace + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.7.1 + hooks: + # lint & attempt to correct failures (e.g. pyupgrade) + - id: ruff + args: [--fix] + # compatible replacement for black + - id: ruff-format + - repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks + rev: v2.14.0 + hooks: + - id: pretty-format-toml + args: [--autofix] + - repo: https://github.com/codespell-project/codespell + rev: v2.3.0 + hooks: + - id: codespell + args: [--write] + - repo: https://github.com/python-jsonschema/check-jsonschema + rev: 0.29.4 + hooks: + - id: check-github-workflows + - id: check-renovate + # TODO: Re-enable once boilerplate repo setup is moved + # - repo: meta + # hooks: + # - id: check-hooks-apply + # - id: check-useless-excludes diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1ce757e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# CHANGELOG + +We [keep a changelog.](http://keepachangelog.com/) + +## v0.4.1 + +This repository has been extracted from a private monorepo with history, and we will +be backporting CHANGELOG entries. + +For now, the current state of the repo contains the source code which was used to +build [v0.4.1](https://pypi.org/project/anaconda-cli-base/) and new releases will be +made from this standalone repo.