diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 00f53f3f..c5d931e8 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -5,10 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](./README.md#updating-and-versioning). +## [0.0.4] - 2025-02-07 + +- fix: improve cross-platform compatibility for the `snapwp` command + ## [0.0.3] - 2025-02-03 -- fix: update regex in `snapwp` command to avoid `node_modules` (#31) -- chore: add missing namespace proxies to Verdaccio config (#33) +- fix: update regex in `snapwp` command to avoid `node_modules` +- chore: add missing namespace proxies to Verdaccio config ## [0.0.2] - 2025-01-31 diff --git a/packages/cli/package.json b/packages/cli/package.json index f04476be..1c25bd77 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "snapwp", - "version": "0.0.3", + "version": "0.0.4", "license": "AGPL-3.0", "author": "rtCamp", "description": "A better way to build headless WordPress applications.", diff --git a/packages/codegen-config/CHANGELOG.md b/packages/codegen-config/CHANGELOG.md new file mode 100644 index 00000000..ff1f3053 --- /dev/null +++ b/packages/codegen-config/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](./README.md#updating-and-versioning). + +## [Unreleased] + +## [0.0.2] - 2025-02-07 + +- feat: Update the base configuration to enable the following: `enumsAsTypes`, `skipTypename`, `useTypeImports`. + +## [0.0.1] - 2025-01-30 + +- Initial (public) release. diff --git a/packages/codegen-config/package.json b/packages/codegen-config/package.json index e7b66c43..afd93eec 100644 --- a/packages/codegen-config/package.json +++ b/packages/codegen-config/package.json @@ -1,6 +1,6 @@ { "name": "@snapwp/codegen-config", - "version": "0.0.1", + "version": "0.0.2", "license": "AGPL-3.0", "author": "rtCamp", "description": "Frontend Codegen Config", diff --git a/packages/next/CHANGELOG.md b/packages/next/CHANGELOG.md new file mode 100644 index 00000000..ed0ef3c5 --- /dev/null +++ b/packages/next/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](./README.md#updating-and-versioning). + +## [Unreleased] + +## [0.0.2] - 2025-02-07 + +- fix: Expose the `className`, `slug`, and `theme` fields to the `CoreTemplatePartFrag.attributes`, to allow for easier component overloading. + +## [0.0.1] - 2025-01-30 + +- Initial (public) release. diff --git a/packages/next/package.json b/packages/next/package.json index e204ff3b..40e00208 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -1,6 +1,6 @@ { "name": "@snapwp/next", - "version": "0.0.1", + "version": "0.0.2", "license": "AGPL-3.0", "description": "Utility functions and components for SnapWP application", "author": "rtCamp", diff --git a/packages/query/CHANGELOG.md b/packages/query/CHANGELOG.md new file mode 100644 index 00000000..854a9f8b --- /dev/null +++ b/packages/query/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](./README.md#updating-and-versioning). + +## [Unreleased] + +## [0.0.2] - 2025-02-07 + +- fix: Normalize file paths when detecting the `snapwp.config.mjs` file on Windows. + +## [0.0.1] - 2025-01-30 + +- Initial (public) release. diff --git a/packages/query/package.json b/packages/query/package.json index 1d9c98f9..7d361438 100644 --- a/packages/query/package.json +++ b/packages/query/package.json @@ -1,6 +1,6 @@ { "name": "@snapwp/query", - "version": "0.0.1", + "version": "0.0.2", "license": "AGPL-3.0", "description": "Internal package for SnapWP", "author": "rtCamp",