Skip to content

Commit 737942f

Browse files
committed
bump: v0.3.0
1 parent 6a026fe commit 737942f

File tree

4 files changed

+74
-2
lines changed

4 files changed

+74
-2
lines changed

CHANGELOG.adoc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@
66

77
== [Unreleased]
88

9+
== [v0.3.0] - 2022-04-13
10+
11+
=== Added
12+
13+
* `file.copy`: Copy files and directories
14+
15+
=== Fixed
16+
17+
* `file.move`: Fixed exception due to introspection issues
18+
919
== [v0.2.0] - 2022-03-16
1020

1121
=== Added
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package = "lgi-async-extra"
2+
version = "0.2.0-1"
3+
4+
source = {
5+
url = "git://github.com/sclu1034/lgi-async-extra.git",
6+
tag = "v0.2.0"
7+
}
8+
9+
description = {
10+
summary = "An asynchronous high(er)-level API wrapper for LGI",
11+
homepage = "https://github.com/sclu1034/lgi-async-extra",
12+
license = "GPLv3"
13+
}
14+
15+
dependencies = {
16+
"lua >= 5.1",
17+
"lgi",
18+
"async.lua"
19+
}
20+
21+
build = {
22+
type = "builtin",
23+
modules = {
24+
["lgi-async-extra.file"] = "src/lgi-async-extra/file.lua",
25+
["lgi-async-extra.stream"] = "src/lgi-async-extra/stream.lua",
26+
["lgi-async-extra.filesystem"] = "src/lgi-async-extra/filesystem.lua",
27+
},
28+
copy_directories = {
29+
"spec"
30+
}
31+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package = "lgi-async-extra"
2+
version = "0.3.0-1"
3+
4+
source = {
5+
url = "git://github.com/sclu1034/lgi-async-extra.git",
6+
tag = "v0.3.0"
7+
}
8+
9+
description = {
10+
summary = "An asynchronous high(er)-level API wrapper for LGI",
11+
homepage = "https://github.com/sclu1034/lgi-async-extra",
12+
license = "GPLv3"
13+
}
14+
15+
dependencies = {
16+
"lua >= 5.1",
17+
"lgi",
18+
"async.lua"
19+
}
20+
21+
build = {
22+
type = "builtin",
23+
modules = {
24+
["lgi-async-extra.file"] = "src/lgi-async-extra/file.lua",
25+
["lgi-async-extra.stream"] = "src/lgi-async-extra/stream.lua",
26+
["lgi-async-extra.filesystem"] = "src/lgi-async-extra/filesystem.lua",
27+
},
28+
copy_directories = {
29+
"spec"
30+
}
31+
}

src/lgi-async-extra/file.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ end
461461
-- Due to limitations in GObject Introspection, this can currently only be implemented as
462462
-- "copy and delete" operation.
463463
--
464-
-- @since git
464+
-- @since 0.3.0
465465
-- @async
466466
-- @tparam string|file path New path to move to.
467467
-- @tparam function cb
@@ -522,7 +522,7 @@ end
522522

523523
--- Copies the file to a new location.
524524
--
525-
-- @since git
525+
-- @since 0.3.0
526526
-- @async
527527
-- @tparam string|file dest_path Path to copy to.
528528
-- @tparam table options

0 commit comments

Comments
 (0)