Skip to content

Commit f3e7851

Browse files
authored
Merge pull request salortiz#15 from hankache/master
Fix last failing test on Windows and increase version
2 parents 4e2085c + 957fd67 commit f3e7851

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

META6.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"perl" : "6.c",
33
"name" : "NativeLibs",
4-
"version" : "0.0.8",
4+
"version" : "0.0.9",
55
"auth" : "github:salortiz",
66
"description" : "Native libraries utilities",
77
"depends" : [ ],

lib/NativeLibs.pm6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sub EXPORT(|) {
88
'&trait_mod:<is>' => $exp.dispatcher
99
)
1010
}
11-
unit module NativeLibs:auth<salortiz>:ver<0.0.8>;
11+
unit module NativeLibs:auth<salortiz>:ver<0.0.9>;
1212

1313
our constant is-win = Rakudo::Internals.IS-WIN();
1414

t/01-basic.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ use Test;
33

44
plan 23;
55

6-
use-ok 'NativeLibs:v<0.0.8>' or do { diag "Can't continue"; exit 1 };
7-
use NativeLibs:ver<0.0.8>;
6+
use-ok 'NativeLibs:v<0.0.9>' or do { diag "Can't continue"; exit 1 };
7+
use NativeLibs:ver<0.0.9>;
88

99
# Our own classes
1010
ok ::('NativeLibs::Loader') !~~ Failure, 'Class Loader exists';

t/02-cannon-name.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ use v6;
22
use Test;
33

44
plan 10;
5-
use NativeLibs:ver<0.0.8>;
5+
use NativeLibs:ver<0.0.9>;
66
my &cn = &NativeLibs::cannon-name;
77

8-
given $*VM.config<osname> {
8+
given $*VM.config<osname>.lc {
99
when 'linux'|'freebsd' {
1010
is cn('foo'), 'libfoo.so', 'libfoo.so';
1111
is cn('libfoo.so'), 'libfoo.so', 'the same';

t/10-search.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use v6;
22
use Test;
3-
use NativeLibs:ver<0.0.8>;
3+
use NativeLibs:ver<0.0.9>;
44

55
# A simple shortcut
66
my \Util = ::NativeLibs::Searcher;

t/20-compile.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use v6;
22
use Test;
3-
use NativeLibs:ver<0.0.8>;
3+
use NativeLibs:ver<0.0.9>;
44

55
plan 2;
66

0 commit comments

Comments
 (0)