Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,16 @@ even though nothing about the interface moved.

Nothing yet.

## [0.1.0] — 2026-07-30
## [0.1.1] — 2026-07-30

First published release.

`v0.1.0` was tagged but never published. Its release run failed in the first job, because the workflow
used `git cat-file` to check that the tag was annotated and `actions/checkout` materialises a tag ref as
a lightweight local tag inside a runner. The tag itself was correct; the check was not. Since the
repository forbids deleting or moving a `v*` tag — a control that did its job here, refusing even an
administrator — the tag stays, pointing at a commit that was never released, and the first published
version is `0.1.1`.

First release. Presets for Pint, PHPStan, Rector, oxlint, oxfmt, ESLint, TypeScript and ruff, plus the
canonical `.editorconfig`.
Expand Down Expand Up @@ -93,5 +102,5 @@ ecosystems, so a malicious version would run in our CI and on developer machines
Composer has no artefact provenance mechanism, so the PHP package's integrity rests on repository
protection and signed tags instead.

[Unreleased]: https://github.com/matchory/coding-style/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/matchory/coding-style/releases/tag/v0.1.0
[Unreleased]: https://github.com/matchory/coding-style/compare/v0.1.1...HEAD
[0.1.1]: https://github.com/matchory/coding-style/releases/tag/v0.1.1
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@matchory/coding-style",
"version": "0.1.0",
"version": "0.1.1",
"description": "Shared code style configuration for Matchory projects: oxlint, oxfmt, ESLint and TypeScript presets.",
"license": "MIT",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

[project]
name = "matchory-coding-style"
version = "0.1.0"
version = "0.1.1"
description = "Shared code style configuration for Matchory projects: ruff presets and the canonical .editorconfig."
readme = "README.md"
requires-python = ">=3.11"
Expand Down
2 changes: 1 addition & 1 deletion src/matchory_coding_style/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

__all__ = ["__version__"]

__version__ = "0.1.0"
__version__ = "0.1.1"
Loading