Skip to content

Commit

Permalink
Merge pull request #117 from sveltinio/release-0.9.1
Browse files Browse the repository at this point in the history
chore: ready for v0.9.1
  • Loading branch information
indaco authored Sep 6, 2022
2 parents 621b0e1 + 8160f8f commit 722867d
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 6 deletions.
30 changes: 29 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# CHANGELOG

## [v0.9.1](https://github.com/sveltinio/sveltin/releases/tag/v0.9.1) (2022-09-06)

[Full Changelog](https://github.com/sveltinio/sveltin/compare/v0.9.0...v0.9.1)

### Fixed Bugs

- make generated page variable reactive

### Chores

- sveltekit updated to **next.472**
- upgrade minor npm deps
- indirect go deps added to generate command docs

### 📖 Documentation

- **cmds:** uniforming cobra help strings for commands

### Pull Requests

- Merge pull request [#110](https://github.com/sveltinio/sveltin/issues/110) from cobra-doc-deps
- Merge pull request [#111](https://github.com/sveltinio/sveltin/issues/111) from page-flags
- Merge pull request [#112](https://github.com/sveltinio/sveltin/issues/112) from content-flags
- Merge pull request [#113](https://github.com/sveltinio/sveltin/issues/113) from update-minor-npm-deps
- Merge pull request [#114](https://github.com/sveltinio/sveltin/issues/114) from uniforming-help-messages
- Merge pull request [#115](https://github.com/sveltinio/sveltin/issues/115) from fix-page-variable
- Merge pull request [#116](https://github.com/sveltinio/sveltin/issues/116) from sk-next.472

## [v0.9.0](https://github.com/sveltinio/sveltin/releases/tag/v0.9.0) (2022-09-05)

[Full Changelog](https://github.com/sveltinio/sveltin/compare/v0.8.12...v0.9.0)
Expand Down Expand Up @@ -83,7 +111,7 @@
- Merge pull request [#105](https://github.com/sveltinio/sveltin/issues/105) from sveltinio/nested-resources
- Merge pull request [#106](https://github.com/sveltinio/sveltin/issues/106) from sveltinio/sveltekit-latest
- Merge pull request [#107](https://github.com/sveltinio/sveltin/issues/107) from sveltinio/go-deps
- Merge pull request [#108](https://github.com/sveltinio/sveltin/issues/108) from bump-vite-sveltekit
- Merge pull request [#109](https://github.com/sveltinio/sveltin/issues/109) from bump-vite-sveltekit

## [v0.8.12](https://github.com/sveltinio/sveltin/releases/tag/v0.8.12) (2022-08-04)

Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The Smartest Way to Create SvelteKit powered static websites.
</a>
&nbsp;
<a href="https://github.com/sveltinio/sveltin/releases" target="_blank">
<img src="https://img.shields.io/badge/version-v0.9.0-success?style=flat-square&logo=none" alt="sveltin cli version" />
<img src="https://img.shields.io/badge/version-v0.9.1-success?style=flat-square&logo=none" alt="sveltin cli version" />
</a>
&nbsp;
<a href="https://github.com/sveltinio/sveltin/actions/workflows/release.yml" 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-470**). 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-472**). 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 Expand Up @@ -83,7 +83,11 @@ sveltin install

# Create a public page as Svelte component
# (http://localhost:5173/contact)
sveltin new page contact --type svelte
sveltin new page contact --as svelte

# Create a public page as MDsveX component
# (http://localhost:5173/contact)
sveltin new page about --as markdown

# Create a 'posts' resource
sveltin new resource posts
Expand Down
2 changes: 1 addition & 1 deletion cmd/newPage.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ var newPageCmd = &cobra.Command{
Command used to create a new public page route.
Pages are Svelte components written in .svelte or .svx (for markdown) files. The filename determines the route,
so creating a page named "about" will generate the followin route /about/+page.<svelte|svx>
so creating a page named "about" will generate the following route /about/+page.(svelte|svx)
This command allows you to select between a svelte component page and a markdown page.`,
Run: NewPageCmdRun,
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

const (
// CliVersion is the current sveltin cli version number.
CliVersion string = "0.9.0"
CliVersion string = "0.9.1"
)

func init() {
Expand Down

0 comments on commit 722867d

Please sign in to comment.