mirror of
https://github.com/lune-org/lune.git
synced 2025-04-10 21:40:54 +01:00
Version 0.8.3
This commit is contained in:
parent
f36ec1483a
commit
fcfb5ed3a8
3 changed files with 14 additions and 8 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -8,15 +8,21 @@ 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.8.3` - April 15th, 2024
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed `require` not throwing syntax errors (#168)
|
- Fixed `require` not throwing syntax errors ([#168])
|
||||||
- Fixed `require` caching not working correctly (#171)
|
- Fixed `require` caching not working correctly ([#171])
|
||||||
- Fixed case-sensitivity issue in `require` with aliases (#173)
|
- Fixed case-sensitivity issue in `require` with aliases ([#173])
|
||||||
- Fixed itertools dependency being marked optional even though it is mandatory (#176)
|
- Fixed `itertools` dependency being marked optional even though it is mandatory ([#176])
|
||||||
- Fixed test cases for the `net` built-in on Windows (#177)
|
- Fixed test cases for the `net` built-in library on Windows ([#177])
|
||||||
|
|
||||||
|
[#168]: https://github.com/lune-org/lune/pull/168
|
||||||
|
[#171]: https://github.com/lune-org/lune/pull/171
|
||||||
|
[#173]: https://github.com/lune-org/lune/pull/173
|
||||||
|
[#176]: https://github.com/lune-org/lune/pull/176
|
||||||
|
[#177]: https://github.com/lune-org/lune/pull/177
|
||||||
|
|
||||||
## `0.8.2` - March 12th, 2024
|
## `0.8.2` - March 12th, 2024
|
||||||
|
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1344,7 +1344,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "lune"
|
name = "lune"
|
||||||
version = "0.8.2"
|
version = "0.8.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"async-compression",
|
"async-compression",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "lune"
|
name = "lune"
|
||||||
version = "0.8.2"
|
version = "0.8.3"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
repository = "https://github.com/lune-org/lune"
|
repository = "https://github.com/lune-org/lune"
|
||||||
|
|
Loading…
Add table
Reference in a new issue