Version 0.5.0

This commit is contained in:
Filip Tibell 2023-02-23 21:20:14 +01:00
parent 766da33ccf
commit c2dc8e2eb9
No known key found for this signature in database
3 changed files with 5 additions and 4 deletions

View file

@ -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
View file

@ -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",

View file

@ -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"