Skip to content

Commit 070c625

Browse files
authored
Release v1.0.2
2 parents 6349515 + 6482abf commit 070c625

11 files changed

Lines changed: 52 additions & 51 deletions

File tree

.github/PULL_REQUEST_TEMPLATE/major_release_request.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
Release Description
33
-->
44

5+
## ❗ Breaking Changes
6+
<!--
7+
- `API.SendRequest` has been rewritten and its parameters have changed
8+
-->
9+
510
## 🆕 Features
611
<!--
7-
- Added this
8-
- Added that
12+
- Added feature1
13+
- Added feature2
14+
- Changed feature3
915
-->
1016

1117
## 🐞 Fixes
1218
<!--
13-
- Fixed this
14-
- Fixed that
15-
- Fixed all of them
16-
-->
17-
18-
## ❗ Breaking Changes
19-
<!--
20-
- `API.SendRequest` has been rewritten and its parameters have changed
19+
- Fixed feature4
20+
- Fixed feature5
2121
-->

.github/PULL_REQUEST_TEMPLATE/minor_release_request.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
## 🆕 Features
66
<!--
7-
- Added this
8-
- Added that
7+
- Added feature1
8+
- Added feature2
9+
- Changed feature3
910
-->
1011

1112
## 🐞 Fixes
1213
<!--
13-
- Fixed this
14-
- Fixed that
15-
- Fixed all of them
14+
- Fixed feature4
15+
- Fixed feature5
1616
-->

.github/PULL_REQUEST_TEMPLATE/patch_release_request.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
## 🐞 Fixes
66
<!--
7-
- Fixed this
8-
- Fixed that
9-
- Fixed all of them
7+
- Fixed feature4
8+
- Fixed feature5
109
-->

.github/PULL_REQUEST_TEMPLATE/prerelease_request.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
Prerelease Description
33
-->
44

5+
## ❗ Breaking Changes
6+
<!--
7+
- `API.SendRequest` has been rewritten and its parameters have changed
8+
-->
9+
510
## 🆕 Features
611
<!--
7-
- Added this
8-
- Added that
12+
- Added feature1
13+
- Added feature2
14+
- Changed feature3
915
-->
1016

1117
## 🐞 Fixes
1218
<!--
13-
- Fixed this
14-
- Fixed that
15-
- Fixed all of them
16-
-->
17-
18-
## ❗ Breaking Changes
19-
<!--
20-
- `API.SendRequest` has been rewritten and its parameters have changed
19+
- Fixed feature4
20+
- Fixed feature5
2121
-->

.github/workflows/check-eol.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
name: Check End-of-Line Sequences
2-
run-name: Check End-of-Line Sequences
1+
name: Check Line Endings
32

43
on:
54
push:
@@ -9,4 +8,6 @@ on:
98

109
jobs:
1110
check-eol:
12-
uses: Arthri/check-eol/.github/workflows/check-eol.yml@v1
11+
uses: Arthri/check-eol/.github/workflows/i.yml@v2
12+
permissions:
13+
contents: read

.github/workflows/deploy.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/publish.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Publish
2+
3+
on:
4+
release:
5+
types:
6+
- published
7+
8+
jobs:
9+
publish-nuget:
10+
uses: Arthri/publish-dotnet/.github/workflows/publish-nuget.yml@v2
11+
permissions:
12+
contents: read
13+
secrets:
14+
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
15+
with:
16+
changelog: ${{ github.event.release.body }}
17+
version: ${{ github.event.release.tag_name }}

.github/workflows/release-request.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
name: Release Request
2-
run-name: Release Request
32

43
on:
54
pull_request:
@@ -13,8 +12,7 @@ on:
1312
- master
1413

1514
jobs:
16-
handle-release-request:
17-
name: ${{ github.event.action == 'closed' && 'Resolve ' || 'Verify ' }}Release Request
15+
process:
1816
permissions:
1917
contents: write
2018
uses: Arthri/release-request/.github/workflows/release-request.yml@v1

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Arthri
3+
Copyright (c) 2023, 2024, 2025 Arthri
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

src/Belp.Build.Testing/Belp.Build.Testing.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<!-- Hide package source files from project tree -->
7272
<Compile Update="@%28Compile)">
7373
<Visible Condition="'%%28Compile.NuGetPackageId)' == '$(PackageId)'">false</Visible>
74-
<Link>$(PackageId)\%%28Filename)%%28Extension)</Link>
74+
<Link Condition="'%%28Compile.NuGetPackageId)' == '$(PackageId)'">$(PackageId)\%%28Filename)%%28Extension)</Link>
7575
</Compile>
7676
</ItemGroup>
7777

0 commit comments

Comments
 (0)