Skip to content

Commit f2bc6a3

Browse files
authoredOct 2, 2023
chore(ci): Prepare multi-package repository (#8043)
1 parent 8ddb0da commit f2bc6a3

File tree

6 files changed

+498
-12814
lines changed

6 files changed

+498
-12814
lines changed
 

‎CHANGELOG.md

+475-12,794
Large diffs are not rendered by default.

‎Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎bindings/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎bindings/swc_cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
66
license = "Apache-2.0"
77
name = "swc_cli"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.91.79"
9+
version = "0.91.80"
1010

1111
[[bin]]
1212
bench = false

‎cliff.toml

+19-16
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ body = """
2727
\n\n
2828
{%- for commit in commits %}
2929
{%- if commit.scope -%}
30-
{% else -%}
30+
{% else %}
3131
\n
32-
- **general**: {{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/swc-project/swc/commit/{{ commit.id }}))
32+
- {{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/swc-project/swc/commit/{{ commit.id }}))
3333
{%- if commit.breaking %}
3434
{% raw %} {% endraw %}- **BREAKING**: {{commit.breaking_description}}
3535
{%- endif -%}
@@ -48,24 +48,27 @@ footer = """
4848
[git]
4949
# allow only conventional commits
5050
# https://www.conventionalcommits.org
51-
conventional_commits = true
51+
conventional_commits = true
5252
filter_unconventional = false
53+
54+
commit_preprocessors = [
55+
{ pattern = "\\(#([0-9]+)\\)", replace = "([#${1}](https://github.com/swc-project/swc/issues/${1}))" },
56+
]
5357
# regex for parsing and grouping commits
5458
commit_parsers = [
55-
{ message = "^feat", group = "Features" },
56-
{ message = "^fix", group = "Bug Fixes" },
57-
{ message = "^doc", group = "Documentation" },
58-
{ message = "^perf", group = "Performance" },
59-
{ message = "^refactor", group = "Refactor" },
60-
{ message = "^style", group = "Styling" },
61-
{ message = "^test", group = "Testing" },
62-
{ message = "^chore: Publish", skip = true },
63-
{ message = "^chore", group = "Miscellaneous Tasks" },
64-
{ body = ".*security", group = "Security" },
59+
{ message = "^feat", group = "Features" },
60+
{ message = "^fix", group = "Bug Fixes" },
61+
{ message = "^doc", group = "Documentation" },
62+
{ message = "^perf", group = "Performance" },
63+
{ message = "^refactor", group = "Refactor" },
64+
{ message = "^style", group = "Styling" },
65+
{ message = "^test", group = "Testing" },
66+
{ message = "^chore: Publish", skip = true },
67+
{ message = "^chore", group = "Miscellaneous Tasks" },
68+
{ body = ".*security", group = "Security" },
6569
]
6670
# filter out the commits that are not matched by commit parsers
6771
filter_commits = false
6872
# glob pattern for matching git tags
69-
tag_pattern = "v[0-9]*"
70-
# regex for skipping tags
71-
skip_tags = "v0.1.0-beta.1"
73+
limit_commits = 1000
74+
tag_pattern = "v[0-9]*"

‎crates/dbg-swc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "Apache-2.0"
66
name = "dbg-swc"
77
repository = "https://github.com/kdy1/dbg-swc.git"
8-
version = "0.87.44"
8+
version = "0.87.45"
99

1010
[[bin]]
1111
bench = false

0 commit comments

Comments
 (0)