Skip to content

Commit 99dbd17

Browse files
authored
release: v0.7.3 (#75)
1 parent a61ab80 commit 99dbd17

File tree

4 files changed

+119
-60
lines changed

4 files changed

+119
-60
lines changed

.github/release.yml

Lines changed: 28 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,42 @@
11
changelog:
2+
exclude:
3+
labels:
4+
- ignore-changelog
5+
26
categories:
3-
- labels:
7+
- title: ":warning: Update considerations and deprecations"
8+
labels:
49
- "type: breaking"
510
- "type: deprecation"
6-
- "regression"
11+
- "type: regression"
712
- "type: revert"
8-
title: ":warning: Update considerations and deprecations"
9-
- labels:
13+
14+
- title: ":rocket: New features and improvements"
15+
labels:
16+
- "type: release"
1017
- "type: feat"
11-
title: ":rocket: New features and improvements"
12-
- labels:
18+
- "type: enhancement"
19+
- "type: refactor"
20+
- "type: perf"
21+
22+
- title: ":lady_beetle: Bug fixes"
23+
labels:
1324
- "type: fix"
14-
title: ":lady_beetle: Bug fixes"
15-
- labels:
25+
26+
- title: ":nail_care: Style, UI, UX"
27+
labels:
1628
- "type: style"
17-
title: ":nail_care: Style"
18-
- labels:
29+
30+
- title: ":book: Documentation"
31+
labels:
1932
- "type: docs"
20-
title: ":book: Documentation"
21-
- labels:
33+
34+
- title: ":hammer: Build/Test Dependency Upgrades"
35+
labels:
36+
- "type: dependencies"
2237
- "dependencies"
2338
- "type: test"
2439
- "type: ci"
2540
- "type: build"
2641
- "type: chore"
27-
title: ":hammer: Build/Test Dependency Upgrades"
28-
- labels:
29-
- "type: refactor"
30-
title: ":question: What's Changed"
31-
exclude:
32-
labels:
33-
- ignore-changelog
42+
- "type: task"

.vscode/settings.json

Lines changed: 88 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,91 @@
11
{
2-
"markdown.validate.enabled": true,
3-
"editor.formatOnSave": true,
4-
"[toml]": {
5-
"editor.defaultFormatter": "esbenp.prettier-vscode"
6-
},
7-
"json.schemas": [
8-
{
9-
"fileMatch": ["./config/_default/*.toml", "config.toml"],
10-
"url": "https://json.schemastore.org/hugo.json"
11-
},
12-
{
13-
"fileMatch": [".prettierrc"],
14-
"url": "https://json.schemastore.org/prettierrc.json"
15-
},
16-
{
17-
"fileMatch": ["renovate.json"],
18-
"url": "https://docs.renovatebot.com/renovate-schema.json"
19-
},
20-
{
21-
"fileMatch": ["theme.toml"],
22-
"url": "https://json.schemastore.org/hugo-theme.json"
23-
},
24-
{
25-
"fileMatch": ["package.json"],
26-
"url": "https://json.schemastore.org/package.json"
27-
},
28-
{
29-
"fileMatch": [".stylelintrc.json"],
30-
"url": "https://json.schemastore.org/stylelintrc.json"
31-
},
32-
{
33-
"fileMatch": ["pyproject.toml"],
34-
"url": "https://json.schemastore.org/pyproject.json"
35-
},
36-
{
37-
"fileMatch": [".pre-commit-config.yaml"],
38-
"url": "https://json.schemastore.org/pre-commit-config.json"
39-
}
2+
"telemetry.feedback.enabled": false,
3+
"redhat.telemetry.enabled": false,
4+
"docker.lsp.telemetry": "off",
5+
"rest-client.enableTelemetry": false,
6+
"editorconfig.generateAuto": false,
7+
"markdown.validate.enabled": true,
8+
"go.useLanguageServer": true,
9+
"editor.formatOnSave": true,
10+
"go.formatTool": "gofumpt",
11+
"[go]": {
12+
"editor.semanticHighlighting.enabled": true,
13+
"editor.defaultFormatter": "golang.go"
14+
},
15+
"gopls": {
16+
"formatting.gofumpt": true,
17+
"ui.semanticTokens": true,
18+
"formatting.local": "github.com/esacteksab"
19+
},
20+
"emeraldwalk.runonsave": {
21+
"commands": [
22+
{
23+
"match": "\\.go$",
24+
"cmd": "golines ${file} -w --base-formatter=gofumpt"
25+
}
4026
]
27+
},
28+
"[toml]": {
29+
"editor.defaultFormatter": "esbenp.prettier-vscode"
30+
},
31+
"json.schemas": [
32+
{
33+
"fileMatch": ["./config/_default/*.toml", "config.toml"],
34+
"url": "https://json.schemastore.org/hugo.json"
35+
},
36+
{
37+
"fileMatch": [".prettierrc"],
38+
"url": "https://json.schemastore.org/prettierrc.json"
39+
},
40+
{
41+
"fileMatch": ["theme.toml"],
42+
"url": "https://json.schemastore.org/hugo-theme.json"
43+
},
44+
{
45+
"fileMatch": ["package.json"],
46+
"url": "https://json.schemastore.org/package.json"
47+
},
48+
{
49+
"fileMatch": [".stylelintrc.json"],
50+
"url": "https://json.schemastore.org/stylelintrc.json"
51+
},
52+
{
53+
"fileMatch": ["pyproject.toml"],
54+
"url": "https://json.schemastore.org/pyproject.json"
55+
},
56+
{
57+
"fileMatch": [".pre-commit-config.yaml"],
58+
"url": "https://json.schemastore.org/pre-commit-config.json"
59+
},
60+
{
61+
"fileMatch": [".github/dependabot.yml"],
62+
"url": "https://json.schemastore.org/dependabot-2.0.json"
63+
},
64+
{
65+
"fileMatch": [".github/workflows/*.yml"],
66+
"url": "https://json.schemastore.org/github-action.json"
67+
},
68+
{
69+
"fileMatch": [".golangci.yaml"],
70+
"url": "https://golangci-lint.run/jsonschema/golangci.jsonschema.json"
71+
}
72+
],
73+
"yaml.schemas": {
74+
"https://golangci-lint.run/jsonschema/golangci.jsonschema.json": [
75+
".golangci.yaml"
76+
]
77+
},
78+
"material-icon-theme.files.associations": {
79+
"go.tool.mod": "go-mod",
80+
"go.tool.sum": "go-mod",
81+
"*.txtar": "Go_gopher",
82+
".current-tag": "docker"
83+
},
84+
"material-icon-theme.folders.associations": {
85+
"testdata": "Test"
86+
},
87+
"files.associations": {
88+
"go.tool.mod": "go.mod",
89+
"go.tool.sum": "go.sum"
90+
}
4191
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/esacteksab/simpl
22

3-
go 1.24
3+
go 1.24.3

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "simpl",
3-
"version": "0.5.0",
3+
"version": "0.7.3",
44
"description": "A simpl(e) Hugo Theme",
55
"author": "@esacteksab",
6-
"packageManager": "pnpm@10.8.0+sha512.0e82714d1b5b43c74610193cb20734897c1d00de89d0e18420aebc5977fa13d780a9cb05734624e81ebd81cc876cd464794850641c48b9544326b5622ca29971",
6+
"packageManager": "pnpm@10.11.0",
77
"scripts": {
88
"postcss": "postcss ./assets/css/main.css --config ./postcss.config.js -r"
99
},

0 commit comments

Comments
 (0)