diff --git a/CHANGELOG.md b/CHANGELOG.md index 5964eb30..09ddfe6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # CHANGELOG +## [v0.8.9](https://github.com/sveltinio/sveltin/releases/tag/v0.8.9) (2022-07-15) + +[Full Changelog](https://github.com/sveltinio/sveltin/compare/v0.8.8...v0.8.9) + +### 🔧 Code Refactoring + +- actual work function structure for commands +- resources and metadata API endpoints now are fully REST. This is really useful during the development. Instead to open a browser, just use `curl` on the terminal. E.g. `http://localshot:5173/posts/category/webdev` + +### Chores + +- shortening and clearing help messages on commands +- sveltekit updated to next.375 with **Vite3** support +- git-ghlog config and template updated +- **adapter-static:** updated to next.36 +- **app.html:** make uses of %sveltekit.assets% to reference static files +- **vite.config.js:** clearScreen:false to prevent Vite from clearing the terminal + +### Pull Requests + +- Merge pull request [#57](https://github.com/sveltinio/sveltin/issues/57) from sveltinio/rest-endpoints +- Merge pull request [#58](https://github.com/sveltinio/sveltin/issues/58) from sveltinio/cmds-refactoring +- Merge pull request [#59](https://github.com/sveltinio/sveltin/issues/59) from sveltinio/deps-update +- Merge pull request [#60](https://github.com/sveltinio/sveltin/issues/60) from sveltinio/sveltekit-assets +- Merge pull request [#61](https://github.com/sveltinio/sveltin/issues/61) from sveltinio/vite3 +- Merge pull request [#62](https://github.com/sveltinio/sveltin/issues/62) from sveltinio/git-chglog-revert +- Merge pull request [#63](https://github.com/sveltinio/sveltin/issues/63) from sveltinio/help-messages + ## [v0.8.8](https://github.com/sveltinio/sveltin/releases/tag/v0.8.8) (2022-07-13) [Full Changelog](https://github.com/sveltinio/sveltin/compare/v0.8.7...v0.8.8) diff --git a/README.md b/README.md index d8ca02b3..fe9c6a10 100644 --- a/README.md +++ b/README.md @@ -19,24 +19,24 @@ The Smartest Way to Build SvelteKit powered static websites.

- - go reference + + license   - - CI + + go report card   - - sveltin cli version + + go reference   - - go report card + + sveltin cli version   - - license + + CI   @@ -50,7 +50,7 @@ Sveltin is a CLI (Command Line Interface) created to boost the developers produc ## :warning: Project Status -> Sveltin is under active development and some changes are expected before we hit version 1.0. At the same time, we will do our best to follow the progress toward SvelteKit v1.0 (Latest SvelteKit tested version is **1.0.0-next-370**). If you are interesting on it please, give it a try and let it evolves, see the **Contributing** section. If you get stuck, reach out for help in the [discussions tab](https://github.com/sveltinio/sveltin/discussions) or open an [issue](https://github.com/sveltinio/sveltin/issues). +> Sveltin is under active development and some changes are expected before we hit version 1.0. At the same time, we will do our best to follow the progress toward SvelteKit v1.0 (Latest SvelteKit tested version is **1.0.0-next-375**). If you are interesting on it please, give it a try and let it evolves, see the **Contributing** section. If you get stuck, reach out for help in the [discussions tab](https://github.com/sveltinio/sveltin/discussions) or open an [issue](https://github.com/sveltinio/sveltin/issues). ## :mega: Overview diff --git a/cmd/root.go b/cmd/root.go index f5eed27c..f98d2119 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -43,7 +43,7 @@ type appConfig struct { const ( // CliVersion is the current sveltin cli version number. - CliVersion string = "0.8.8" + CliVersion string = "0.8.9" // SvelteKitStarter is a string representing the project starter id. SvelteKitStarter string = "starter" // ThemeStarter is a string representing the project starter id for new themes.