mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 04:50:36 +00:00
Version 0.5.0
This commit is contained in:
parent
766da33ccf
commit
c2dc8e2eb9
3 changed files with 5 additions and 4 deletions
|
@ -8,10 +8,11 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## Unreleased
|
## `0.5.0` - February 23rd, 2023
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
- Added auto-generated API reference pages and documentation using GitHub wiki pages
|
||||||
- Added support for `query` in `net.request` parameters, which enables usage of query parameters in URLs without having to manually URL encode values.
|
- Added support for `query` in `net.request` parameters, which enables usage of query parameters in URLs without having to manually URL encode values.
|
||||||
- Added a new function `fs.move` to move / rename a file or directory from one path to another.
|
- Added a new function `fs.move` to move / rename a file or directory from one path to another.
|
||||||
- Implemented a new task scheduler which resolves several long-standing issues:
|
- Implemented a new task scheduler which resolves several long-standing issues:
|
||||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -784,7 +784,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "lune"
|
name = "lune"
|
||||||
version = "0.4.0"
|
version = "0.5.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
|
@ -809,7 +809,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "lune-cli"
|
name = "lune-cli"
|
||||||
version = "0.4.0"
|
version = "0.5.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"clap",
|
"clap",
|
||||||
|
|
|
@ -4,7 +4,7 @@ members = ["packages/cli", "packages/lib"]
|
||||||
default-members = ["packages/cli"]
|
default-members = ["packages/cli"]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.4.0"
|
version = "0.5.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
repository = "https://github.com/filiptibell/lune"
|
repository = "https://github.com/filiptibell/lune"
|
||||||
|
|
Loading…
Reference in a new issue