Skip to content

Commit be6b49e

Browse files
committed
Prepare release 2.1.0
1 parent b725e85 commit be6b49e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sbt-dependency-submission",
3-
"version": "2.0.1",
3+
"version": "2.1.0",
44
"private": true,
55
"description": "Submit the dependency graph of an sbt build to Github",
66
"main": "lib/main.js",

sbt-plugin/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ inThisBuild(
1313
developers := Developers.all,
1414
version ~= { dynVer =>
1515
if (isRelease) dynVer
16-
else "2.1.0-SNAPSHOT" // only for local publishing
16+
else "2.2.0-SNAPSHOT" // only for local publishing
1717
},
1818
// Scalafix settings
1919
semanticdbEnabled := true,

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import * as fsPromises from 'fs/promises'
77
import * as path from 'path'
88

99
// Version of the sbt-github-dependency-submission plugin
10-
const pluginVersion = '2.0.1'
10+
const pluginVersion = '2.1.0'
1111

1212
async function run(): Promise<void> {
1313
try {

0 commit comments

Comments
 (0)