Skip to content

Commit cf7b2b4

Browse files
github-actions[bot]keroxp
authored andcommitted
bump: deno@v0.28.1 (#42)
1 parent 8e8db4f commit cf7b2b4

9 files changed

Lines changed: 22 additions & 16 deletions

File tree

β€Ž.denovβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.27.0
1+
v0.28.1

β€Žmodules-lock.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"https://deno.land/std": {
3-
"version": "@v0.27.0",
3+
"version": "@v0.28.1",
44
"modules": [
55
"/util/async.ts",
66
"/testing/mod.ts",

β€Žmodules.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"https://deno.land/std": {
3-
"version": "@v0.27.0",
3+
"version": "@v0.28.1",
44
"modules": [
55
"/util/async.ts",
66
"/testing/mod.ts",

β€Žredis_test.tsβ€Ž

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -140,23 +140,25 @@ test(async function testZrevrange() {
140140
redis.zadd("zrevrange", 1, "one");
141141
redis.zadd("zrevrange", 2, "two");
142142
redis.zadd("zrevrange", 3, "three");
143-
const v = await redis.zrevrange("zrevrange", 0, 1)
143+
const v = await redis.zrevrange("zrevrange", 0, 1);
144144
assertEquals(v, ["three", "two"]);
145145
});
146146

147147
test(async function testZrevrangeWithScores() {
148148
redis.zadd("zrevrangeWithScores", 1, "one");
149149
redis.zadd("zrevrangeWithScores", 2, "two");
150150
redis.zadd("zrevrangeWithScores", 3, "three");
151-
const v = await redis.zrevrange("zrevrangeWithScores", 0, 1, { withScore: true });
151+
const v = await redis.zrevrange("zrevrangeWithScores", 0, 1, {
152+
withScore: true
153+
});
152154
assertEquals(v, ["three", "3", "two", "2"]);
153155
});
154156

155157
test(async function testZrangebyscore() {
156158
redis.zadd("zrangebyscore", 2, "m1");
157159
redis.zadd("zrangebyscore", 5, "m2");
158160
redis.zadd("zrangebyscore", 8, "m3");
159-
redis.zadd("zrangebyscore", 10, "m4");
161+
redis.zadd("zrangebyscore", 10, "m4");
160162
const v = await redis.zrangebyscore("zrangebyscore", 3, 9);
161163
assertEquals(v, ["m2", "m3"]);
162164
});
@@ -165,16 +167,18 @@ test(async function testZrangebyscoreWithScores() {
165167
redis.zadd("zrangebyscoreWithScores", 2, "m1");
166168
redis.zadd("zrangebyscoreWithScores", 5, "m2");
167169
redis.zadd("zrangebyscoreWithScores", 8, "m3");
168-
redis.zadd("zrangebyscoreWithScores", 10, "m4");
169-
const v = await redis.zrangebyscore("zrangebyscoreWithScores", 3, 9, { withScore: true });
170+
redis.zadd("zrangebyscoreWithScores", 10, "m4");
171+
const v = await redis.zrangebyscore("zrangebyscoreWithScores", 3, 9, {
172+
withScore: true
173+
});
170174
assertEquals(v, ["m2", "5", "m3", "8"]);
171175
});
172176

173177
test(async function testZrevrangebyscore() {
174178
redis.zadd("zrevrangebyscore", 2, "m1");
175179
redis.zadd("zrevrangebyscore", 5, "m2");
176180
redis.zadd("zrevrangebyscore", 8, "m3");
177-
redis.zadd("zrevrangebyscore", 10, "m4");
181+
redis.zadd("zrevrangebyscore", 10, "m4");
178182
const v = await redis.zrevrangebyscore("zrevrangebyscore", 9, 4);
179183
assertEquals(v, ["m3", "m2"]);
180184
});
@@ -183,8 +187,10 @@ test(async function testZrevrangebyscore() {
183187
redis.zadd("zrevrangebyscoreWithScores", 2, "m1");
184188
redis.zadd("zrevrangebyscoreWithScores", 5, "m2");
185189
redis.zadd("zrevrangebyscoreWithScores", 8, "m3");
186-
redis.zadd("zrevrangebyscoreWithScores", 10, "m4");
187-
const v = await redis.zrevrangebyscore("zrevrangebyscoreWithScores", 9, 4, { withScore: true });
190+
redis.zadd("zrevrangebyscoreWithScores", 10, "m4");
191+
const v = await redis.zrevrangebyscore("zrevrangebyscoreWithScores", 9, 4, {
192+
withScore: true
193+
});
188194
assertEquals(v, ["m3", "8", "m2", "5"]);
189195
});
190196

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@v0.27.0/fmt/colors.ts";
1+
export * from "https://deno.land/std@v0.28.1/fmt/colors.ts";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@v0.27.0/io/bufio.ts";
1+
export * from "https://deno.land/std@v0.28.1/io/bufio.ts";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@v0.27.0/testing/asserts.ts";
1+
export * from "https://deno.land/std@v0.28.1/testing/asserts.ts";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@v0.27.0/testing/mod.ts";
1+
export * from "https://deno.land/std@v0.28.1/testing/mod.ts";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@v0.27.0/util/async.ts";
1+
export * from "https://deno.land/std@v0.28.1/util/async.ts";

0 commit comments

Comments
Β (0)