Skip to content

Commit

Permalink
Prepare version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adpi2 committed Jul 14, 2022
1 parent 01793f4 commit a8a49ce
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sbt-dependency-submission",
"version": "1.2.0-SNAPSHOT",
"version": "2.0.0",
"private": true,
"description": "Submit the dependency graph of an sbt build to Github",
"main": "lib/main.js",
Expand Down
2 changes: 1 addition & 1 deletion sbt-plugin/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ inThisBuild(
developers := Developers.all,
version ~= { dynVer =>
if (isRelease) dynVer
else "1.2.0-SNAPSHOT" // only for local publishing
else "2.0.0" // only for local publishing
},
// Scalafix settings
semanticdbEnabled := true,
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as os from 'os'
import * as path from 'path'

// Version of the sbt-github-dependency-submission plugin
const pluginVersion = '1.2.0-SNAPSHOT'
const pluginVersion = '2.0.0'

async function commandExists(cmd: string): Promise<boolean> {
const isWin = os.platform() === 'win32'
Expand Down

0 comments on commit a8a49ce

Please sign in to comment.