Skip to content

Commit

Permalink
feat: use Release as default new version stability (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
budak7273 authored Dec 18, 2023
1 parent f415243 commit 1a1541c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// language - current active spelling language
"language": "en",
// words - list of words to be always considered correct
"words": ["cfworker", "felte", "ficsit", "pnpx", "prismjs", "smui", "tolgee", "urql", "webp", "wonka"],
"words": ["cfworker", "felte", "ficsit", "pnpx", "prismjs", "smui", "tolgee", "uplugin", "urql", "webp", "wonka"],
// flagWords - list of words to be always considered incorrect
// This is useful for offensive words and common spelling errors.
// cSpell:disable (don't complain about the words we listed here)
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/versions/VersionForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
export let onSubmit: (data: VersionData) => Promise<void>;
export let initialValues: Omit<VersionData, 'file'> = {
changelog: '',
stability: VersionStabilities.Alpha
stability: VersionStabilities.Release
};
export let submitText = $t('entry.create');
Expand Down

0 comments on commit 1a1541c

Please sign in to comment.