Skip to content

Commit

Permalink
bump: v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sclu1034 committed Apr 13, 2022
1 parent 6a026fe commit 737942f
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@

== [Unreleased]

== [v0.3.0] - 2022-04-13

=== Added

* `file.copy`: Copy files and directories

=== Fixed

* `file.move`: Fixed exception due to introspection issues

== [v0.2.0] - 2022-03-16

=== Added
Expand Down
31 changes: 31 additions & 0 deletions rocks/lgi-async-extra-0.2.0-2.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
package = "lgi-async-extra"
version = "0.2.0-1"

source = {
url = "git://github.com/sclu1034/lgi-async-extra.git",
tag = "v0.2.0"
}

description = {
summary = "An asynchronous high(er)-level API wrapper for LGI",
homepage = "https://github.com/sclu1034/lgi-async-extra",
license = "GPLv3"
}

dependencies = {
"lua >= 5.1",
"lgi",
"async.lua"
}

build = {
type = "builtin",
modules = {
["lgi-async-extra.file"] = "src/lgi-async-extra/file.lua",
["lgi-async-extra.stream"] = "src/lgi-async-extra/stream.lua",
["lgi-async-extra.filesystem"] = "src/lgi-async-extra/filesystem.lua",
},
copy_directories = {
"spec"
}
}
31 changes: 31 additions & 0 deletions rocks/lgi-async-extra-0.3.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
package = "lgi-async-extra"
version = "0.3.0-1"

source = {
url = "git://github.com/sclu1034/lgi-async-extra.git",
tag = "v0.3.0"
}

description = {
summary = "An asynchronous high(er)-level API wrapper for LGI",
homepage = "https://github.com/sclu1034/lgi-async-extra",
license = "GPLv3"
}

dependencies = {
"lua >= 5.1",
"lgi",
"async.lua"
}

build = {
type = "builtin",
modules = {
["lgi-async-extra.file"] = "src/lgi-async-extra/file.lua",
["lgi-async-extra.stream"] = "src/lgi-async-extra/stream.lua",
["lgi-async-extra.filesystem"] = "src/lgi-async-extra/filesystem.lua",
},
copy_directories = {
"spec"
}
}
4 changes: 2 additions & 2 deletions src/lgi-async-extra/file.lua
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ end
-- Due to limitations in GObject Introspection, this can currently only be implemented as
-- "copy and delete" operation.
--
-- @since git
-- @since 0.3.0
-- @async
-- @tparam string|file path New path to move to.
-- @tparam function cb
Expand Down Expand Up @@ -522,7 +522,7 @@ end

--- Copies the file to a new location.
--
-- @since git
-- @since 0.3.0
-- @async
-- @tparam string|file dest_path Path to copy to.
-- @tparam table options
Expand Down

0 comments on commit 737942f

Please sign in to comment.