diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fb301c..1edf8ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## [0.3.0] - 2026-02-03 + +### 🚀 Features + +- Initial oauth implementation +- Add stripDatePrefix option for Jekyll-style filenames +- Add `update` command + +### ⚙️ Miscellaneous Tasks + +- Update changelog +- Added workflows +- Updated workflows +- Updated workflows +- Cleaned up types +- Updated icon styles +- Updated og image +- Updated docs +- Docs updates + ## [0.2.1] - 2026-02-02 ### ⚙️ Miscellaneous Tasks diff --git a/packages/cli/package.json b/packages/cli/package.json index a6a97d9..3d571ef 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "sequoia-cli", - "version": "0.2.1", + "version": "0.3.0", "type": "module", "bin": { "sequoia": "dist/index.js" diff --git a/packages/cli/src/index.ts b/packages/cli/src/index.ts index 48f2954..face1e7 100755 --- a/packages/cli/src/index.ts +++ b/packages/cli/src/index.ts @@ -35,7 +35,7 @@ Publish evergreen content to the ATmosphere > https://tangled.org/stevedylan.dev/sequoia `, - version: "0.2.1", + version: "0.3.0", cmds: { auth: authCommand, init: initCommand,