From c2dc8e2eb965a5636280ec56d04200f740de1062 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Thu, 23 Feb 2023 21:20:14 +0100 Subject: [PATCH] Version 0.5.0 --- CHANGELOG.md | 3 ++- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e240d8..46bada5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## `0.5.0` - February 23rd, 2023 ### 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 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: diff --git a/Cargo.lock b/Cargo.lock index 0cf1391..bb15df9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -784,7 +784,7 @@ dependencies = [ [[package]] name = "lune" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "async-trait", @@ -809,7 +809,7 @@ dependencies = [ [[package]] name = "lune-cli" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index cfd51c2..ad48ea2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["packages/cli", "packages/lib"] default-members = ["packages/cli"] [workspace.package] -version = "0.4.0" +version = "0.5.0" edition = "2021" license = "MPL-2.0" repository = "https://github.com/filiptibell/lune"