Compare commits
3 Commits
v3.0.1
...
fix/releas
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2ecdeb6901 | ||
|
|
1db4abff8c | ||
|
|
c2977f6430 |
4
.github/cliff.toml
vendored
4
.github/cliff.toml
vendored
@@ -33,9 +33,9 @@ body = """
|
||||
{{ self::print_commit(commit=commit) }}
|
||||
{%- endfor %}
|
||||
{%- for commit in commits %}
|
||||
{%- if not commit.scope -%}
|
||||
{%- if not commit.scope %}
|
||||
{{ self::print_commit(commit=commit) }}
|
||||
{%- endif -%}
|
||||
{%- endif %}
|
||||
{%- endfor -%}
|
||||
{%- endfor -%}
|
||||
|
||||
|
||||
1959
CHANGELOG.md
1959
CHANGELOG.md
File diff suppressed because it is too large
Load Diff
12
bin/publish.sh
Normal file
12
bin/publish.sh
Normal file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
# Check arguments
|
||||
if [ "$#" -ne 1 ]; then
|
||||
echo -e "Usage: $0 <version>\n\nExample: $0 1.2.3"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Update package.json, commit the file and create a tag
|
||||
npm version "$1" -m "chore: update version to v$1" --sign-git-tag
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "seerr",
|
||||
"version": "3.0.1",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@10.24.0",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user