diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a47abc..bb2130c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,23 @@ The format is based on [Keep a Changelog][keepachangelog] and adheres to [Semant ### Deprecated ### Fixed +## [0.53.14] - 2025-11-03 + +### Added +- Added a new `install-hooks` target to the Makefile to easily set up git hooks. +- Added a script (`scripts/install-hooks.sh`) to copy git hooks from `.githooks` to `.git/hooks`. + +### Changed +- Improved the pre-push git hook to automatically commit the updated `CHANGELOG.md` and `Makefile` after generating the changelog. +- Updated the changelog generation script (`scripts/update_changelog.sh`) to load the OpenRouter API key from the `.env` file or environment variables, improving security and configuration. +- Modified the pre-push hook to read user confirmation from `/dev/tty` for better compatibility in various terminal environments. + +### Deprecated + +### Removed + +### Fixed +\n ## [0.53.8] - 2025-10-31 diff --git a/Makefile b/Makefile index 5e82c49..6f9a996 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ test-e2e: .PHONY: build clean test run-node run-node2 run-node3 run-example deps tidy fmt vet lint clear-ports install-hooks -VERSION := 0.53.13 +VERSION := 0.53.14 COMMIT ?= $(shell git rev-parse --short HEAD 2>/dev/null || echo unknown) DATE ?= $(shell date -u +%Y-%m-%dT%H:%M:%SZ) LDFLAGS := -X 'main.version=$(VERSION)' -X 'main.commit=$(COMMIT)' -X 'main.date=$(DATE)'