Skip to content

Commit 4d6ebb2

Browse files
committed
chore(release): v0.0.1
1 parent 02d430a commit 4d6ebb2

File tree

3 files changed

+18
-13
lines changed

3 files changed

+18
-13
lines changed

.release-it.cjs

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,23 @@
11
/* eslint-disable no-template-curly-in-string */
22
// https://github.com/release-it/release-it/blob/main/config/release-it.json
33
module.exports = {
4-
// plugins: {
5-
// './dist/index.mjs': {
6-
// keepArtifacts: true,
7-
// publish: true,
8-
// csprojFile: './src/ClassLibrary1/ClassLibrary1.csproj',
9-
// extraFiles: ['./Directory.Build.props'],
10-
// },
11-
// },
4+
plugins: {
5+
'release-it-changelogen': {
6+
excludeAuthors: ['John Campion'],
7+
},
8+
},
129
git: {
13-
commit: false,
14-
tag: false,
15-
push: false,
10+
commit: true,
11+
tag: true,
12+
push: true,
1613
requireCleanWorkingDir: false,
1714
tagName: 'v${version}',
1815
commitMessage: 'chore(release): v${version}',
1916
tagAnnotation: 'v${version}',
2017
},
2118
github: {
2219
releaseName: 'v${version}',
23-
release: false,
20+
release: true,
2421
web: true,
2522
},
2623
npm: {

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changelog
2+
3+
## v0.0.1
4+
5+
### 🚀 Enhancements
6+
7+
- Initial version ([02d430a](https://github.com/jcamp-code/release-it-dotnet/commit/02d430a))

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "release-it-dotnet",
33
"type": "module",
4-
"version": "0.0.0",
4+
"version": "0.0.1",
55
"description": "NuGet publish and DotNet version read/write plugin for release-it",
66
"author": "John Campion Jr (https://github.com/JohnCampionJr/)",
77
"license": "MIT",
@@ -66,6 +66,7 @@
6666
"eslint": "8.52.0",
6767
"prettier": "3.0.3",
6868
"release-it": "16.2.1",
69+
"release-it-changelogen": "^0.0.4",
6970
"sinon": "^17.0.0",
7071
"tsup": "^7.2.0",
7172
"typescript": "^5.2.2",

0 commit comments

Comments
 (0)