Skip to content

Commit

Permalink
Add CHANGELOG with messaging about the repo move (#1)
Browse files Browse the repository at this point in the history
* Add .pre-commit-config.yaml
* Add basic CHANGELOG.md
  • Loading branch information
mattkram authored Nov 1, 2024
1 parent d7adf82 commit 49cb6de
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit 49cb6de

Please sign in to comment.