diff --git a/CHANGELOG.md b/CHANGELOG.md index 448d8a5..97a10b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ 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). +## `0.5.3` - February 26th, 2023 + +### Fixed + +- Fixed `lune --generate-selene-types` generating an invalid Selene definitions file +- Fixed (maybe) type definition parsing issues on Windows + ## `0.5.2` - February 26th, 2023 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 6b6304e..3499618 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -775,7 +775,7 @@ dependencies = [ [[package]] name = "lune" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "async-trait", @@ -802,7 +802,7 @@ dependencies = [ [[package]] name = "lune-cli" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 6a839b1..4a717c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ default-members = ["packages/cli"] # Package config values shared across all packages, # such as version, license, and other metadata [workspace.package] -version = "0.5.2" +version = "0.5.3" edition = "2021" license = "MPL-2.0" repository = "https://github.com/filiptibell/lune"