Skip to content

Commit 01082b7

Browse files
authored
Bumps 0.18.0 (#1368)
* Bumps 0.18.0 * fixes test * fix test
1 parent d7c9ed7 commit 01082b7

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

nimble.nimble

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

3-
version = "0.16.4"
3+
version = "0.18.0"
44
author = "Dominik Picheta"
55
description = "Nim package manager."
66
license = "BSD"

tests/issue799/issue799.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ bin = @["issue799"]
99

1010
# Dependencies
1111
requires "nim >= 0.16.0"
12-
requires "nimble#head"
12+
requires "nimble == 0.16.4"

tests/tissues.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ suite "issues":
3131
# path that they get permanently installed at.
3232
cleanDir installDir
3333
cd "issue799":
34-
let (output, exitCode) = execNimbleYes("build")
34+
let (output, exitCode) = execNimbleYes("build")
3535
check exitCode == QuitSuccess
3636
var lines = output.processOutput
3737
lines.keepItIf(unindent(it).startsWith("Executing"))
3838

3939
for line in lines:
4040
if line.contains("issue799"):
4141
let nimbleInstallDir = getPackageDir(
42-
pkgsDir, &"nimble-{nimbleVersion}")
42+
pkgsDir, &"nimble-0.16.4")
4343
let pkgInstalledPath = "--path:" & nimbleInstallDir.quoteShell & ""
4444
check line.contains(pkgInstalledPath)
4545

tests/trequireflag.nim

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ suite "requires flag":
3333
# check output.processOutput.inLines("Success: nimqml installed successfully.")
3434
# check output.processOutput.inLines("Installing [email protected]")
3535

36+

0 commit comments

Comments
 (0)