Update README date and fix bump-version script to auto-update date

This commit is contained in:
copilot-swe-agent[bot]
2025-11-05 14:16:00 +00:00
parent 5154f27e13
commit 9d82374f6a
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
[![TypeScript](https://img.shields.io/badge/TypeScript-5.3-blue.svg)](https://www.typescriptlang.org/)
[![Node](https://img.shields.io/badge/Node-%3E%3D18.0.0-green.svg)](https://nodejs.org/)
**Version 3.0.0** | **Last Updated:** 2025-10-30
**Version 3.0.0** | **Last Updated:** 2025-11-05
238 resources for AI-assisted development. One command. Any project. This repository provides specialized skills, executable tools, reusable components, and pre-configured integrations that Claude automatically uses to deliver higher quality, more consistent results.
+6
View File
@@ -72,6 +72,12 @@ readme = readme.replace(
`**Version ${newVersion}**`
);
// Update "Last Updated" date in header
readme = readme.replace(
/\*\*Last Updated:\*\* \d{4}-\d{2}-\d{2}/,
`**Last Updated:** ${date}`
);
// Update "Current Version" in Versioning section
readme = readme.replace(
/\*\*Current Version:\*\* \d+\.\d+\.\d+/,