Skip to content

Commit

Permalink
Merge pull request #64 from sveltinio/release-0.8.9
Browse files Browse the repository at this point in the history
release v0.8.9
  • Loading branch information
indaco authored Jul 15, 2022
2 parents 73db88d + 89519ad commit 9c0aeee
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 12 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,24 @@ The Smartest Way to Build SvelteKit powered static websites.
</a>
</p>
<p align="center">
<a href="https://pkg.go.dev/github.com/sveltinio/sveltin/" target="_blank">
<img src="https://pkg.go.dev/badge/github.com/sveltinio/sveltin/.svg" alt="go reference" />
<a href="https://github.com/sveltinio/sveltin/blob/main/LICENSE" target="_blank">
<img src="https://img.shields.io/badge/license-apache_2.0-blue?style=flat-square&logo=none" alt="license" />
</a>
&nbsp;
<a href="https://github.com/sveltinio/sveltin/actions/workflows/release.yml" target="_blank">
<img src="https://github.com/sveltinio/sveltin/actions/workflows/release.yml/badge.svg" alt="CI" />
<a href="https://goreportcard.com/report/github.com/sveltinio/sveltin/" target="_blank">
<img src="https://goreportcard.com/badge/github.com/sveltinio/sveltin" alt="go report card" />
</a>
&nbsp;
<a href="https://github.com/sveltinio/sveltin/releases" target="_blank">
<img src="https://img.shields.io/badge/version-v0.8.8-success?style=flat-square&logo=none" alt="sveltin cli version" />
<a href="https://pkg.go.dev/github.com/sveltinio/sveltin/" target="_blank">
<img src="https://pkg.go.dev/badge/github.com/sveltinio/sveltin/.svg" alt="go reference" />
</a>
&nbsp;
<a href="https://goreportcard.com/report/github.com/sveltinio/sveltin/" target="_blank">
<img src="https://goreportcard.com/badge/github.com/sveltinio/sveltin" alt="go report card" />
<a href="https://github.com/sveltinio/sveltin/releases" target="_blank">
<img src="https://img.shields.io/badge/version-v0.8.9-success?style=flat-square&logo=none" alt="sveltin cli version" />
</a>
&nbsp;
<a href="https://github.com/sveltinio/sveltin/blob/main/LICENSE" target="_blank">
<img src="https://img.shields.io/badge/license-apache_2.0-blue?style=flat-square&logo=none" alt="license" />
<a href="https://github.com/sveltinio/sveltin/actions/workflows/release.yml" target="_blank">
<img src="https://github.com/sveltinio/sveltin/actions/workflows/release.yml/badge.svg" alt="CI" />
</a>
&nbsp;
<a href="https://madewithsvelte.com/p/sveltin/shield-link" target="_blank">
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 9c0aeee

Please sign in to comment.