Skip to content

Commit

Permalink
Merge pull request #84 from ferreira-tb:docs
Browse files Browse the repository at this point in the history
docs: update changelog
  • Loading branch information
ferreira-tb authored Jan 5, 2025
2 parents 47b7bdb + a3dd239 commit 9796c6a
Show file tree
Hide file tree
Showing 10 changed files with 56 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/tauri-plugin-pinia/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tauri-plugin-pinia"
description = "Persistent Pinia stores for Tauri"
version = "0.10.2"
version = "0.10.3"
documentation = "https://docs.rs/tauri-plugin-pinia"
homepage = "https://tb.dev.br/tauri-store"
repository = "https://github.com/ferreira-tb/tauri-store"
Expand Down
2 changes: 1 addition & 1 deletion crates/tauri-plugin-svelte/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tauri-plugin-svelte"
description = "Persistent Svelte stores for Tauri"
version = "0.1.3"
version = "0.1.4"
documentation = "https://docs.rs/tauri-plugin-svelte"
homepage = "https://tb.dev.br/tauri-store"
repository = "https://github.com/ferreira-tb/tauri-store"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
export type ChangeKind =
| 'Breaking changes'
| 'Bug fixes'
| 'Dependencies'
| 'Documentation'
| 'Enhancements'
| 'Features'
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<script lang="ts">
import { default as Base, type BaseProps } from './base.svelte';
const _props: BaseProps = $props();
</script>

<Base {..._props} kind="Dependencies" />
11 changes: 10 additions & 1 deletion docs/src/lib/components/container/changelog/change/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@ import Features from './features.svelte';
import BugFixes from './bug-fixes.svelte';
import Performance from './performance.svelte';
import Enhancements from './enhancements.svelte';
import Dependencies from './dependencies.svelte';
import Documentation from './documentation.svelte';
import BreakingChanges from './breaking-changes.svelte';

export { BreakingChanges, BugFixes, Documentation, Enhancements, Features, Performance };
export {
BreakingChanges,
BugFixes,
Dependencies,
Documentation,
Enhancements,
Features,
Performance,
};
16 changes: 16 additions & 0 deletions docs/src/lib/content/changelog/tauri-plugin-pinia/v0/0.10.3.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<script lang="ts">
import { Link } from '$lib/components/link';
import { Changelog } from '$lib/components/container';
const version = '0.10.3';
const url = 'https://www.npmjs.com/package/@tauri-store/shared';
</script>

<Changelog.Version {version} />

<Changelog.Dependencies {version}>
<ul>
<li>Update <Link href={url} code>@tauri-store/shared</Link>.</li>
</ul>
</Changelog.Dependencies>
16 changes: 16 additions & 0 deletions docs/src/lib/content/changelog/tauri-plugin-svelte/v0/0.1.4.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<script lang="ts">
import { Link } from '$lib/components/link';
import { Changelog } from '$lib/components/container';
const version = '0.1.4';
const url = 'https://www.npmjs.com/package/@tauri-store/shared';
</script>

<Changelog.Version {version} />

<Changelog.Dependencies {version}>
<ul>
<li>Update <Link href={url} code>@tauri-store/shared</Link>.</li>
</ul>
</Changelog.Dependencies>
2 changes: 1 addition & 1 deletion packages/tauri-plugin-pinia/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tauri-plugin-pinia",
"version": "0.10.2",
"version": "0.10.3",
"description": "Persistent Pinia stores for Tauri",
"type": "module",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion packages/tauri-plugin-svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tauri-plugin-svelte",
"version": "0.1.3",
"version": "0.1.4",
"description": "Persistent Svelte stores for Tauri",
"type": "module",
"private": false,
Expand Down

0 comments on commit 9796c6a

Please sign in to comment.