Skip to content

Commit e73df9b

Browse files
committedSep 11, 2024
Upgrade dependencies
1 parent e9b7d06 commit e73df9b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import conventionalRecommendedBump from 'conventional-recommended-bump';
55
import conventionalChangelog from 'conventional-changelog';
66
import semver from 'semver';
77
import concat from 'concat-stream';
8-
import gitSemverTags from 'git-semver-tags';
8+
import { getSemverTags } from 'git-semver-tags';
99

1010
class ConventionalChangelog extends Plugin {
1111
static disablePlugin(options) {
@@ -51,7 +51,7 @@ class ConventionalChangelog extends Plugin {
5151
return semver.inc(latestVersion, `pre${releaseType}`, preReleaseId);
5252
}
5353

54-
const tags = await gitSemverTags({
54+
const tags = await getSemverTags({
5555
lernaTags: !!options.lernaPackage,
5656
package: options.lernaPackage,
5757
tagPrefix: options.tagPrefix,

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@
3737
"concat-stream": "^2.0.0",
3838
"conventional-changelog": "^5.1.0",
3939
"conventional-recommended-bump": "^9.0.0",
40-
"git-semver-tags": "^7.0.1",
40+
"git-semver-tags": "^8.0.0",
4141
"semver": "^7.6.3"
4242
},
4343
"devDependencies": {
4444
"bron": "^2.0.3",
4545
"installed-check": "^9.3.0",
4646
"release-it": "^17.6.0",
4747
"shelljs": "^0.8.5",
48-
"sinon": "^18.0.0",
48+
"sinon": "^18.0.1",
4949
"tmp": "^0.2.3"
5050
},
5151
"peerDependencies": {

0 commit comments

Comments
 (0)
Please sign in to comment.