mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
Version 0.0.2
This commit is contained in:
parent
3081a16df1
commit
b0042726ce
6 changed files with 7 additions and 7 deletions
|
@ -5,7 +5,7 @@ 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.0.2` - January 19th, 2023
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
@ -26,6 +26,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
These files will be downloaded as `lune.yml` and `luneTypes.d.luau`
|
These files will be downloaded as `lune.yml` and `luneTypes.d.luau`
|
||||||
respectively and are also available in each release on GitHub.
|
respectively and are also available in each release on GitHub.
|
||||||
|
|
||||||
## `0.0.1` - January 19th, 2023
|
## `0.0.1` - January 18th, 2023
|
||||||
|
|
||||||
Initial Release
|
Initial Release
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -511,7 +511,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "lune"
|
name = "lune"
|
||||||
version = "0.0.1"
|
version = "0.0.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"clap",
|
"clap",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "lune"
|
name = "lune"
|
||||||
version = "0.0.1"
|
version = "0.0.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MPL 2.0"
|
license = "MPL 2.0"
|
||||||
repository = "https://github.com/filiptibell/lune"
|
repository = "https://github.com/filiptibell/lune"
|
||||||
|
|
|
@ -23,7 +23,7 @@ This will add `lune` to an `aftman.toml` file in the current directory, or creat
|
||||||
aftman add filiptibell/lune
|
aftman add filiptibell/lune
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also download pre-built binaries for most systems directly from the linked GitHub Releases page.
|
You can also download pre-built binaries for most systems directly from the GitHub Releases page.
|
||||||
|
|
||||||
## ✏️ Writing Lune Scripts
|
## ✏️ Writing Lune Scripts
|
||||||
|
|
||||||
|
|
2
lune.yml
2
lune.yml
|
@ -1,4 +1,4 @@
|
||||||
# Lune v0.0.1
|
# Lune v0.0.2
|
||||||
---
|
---
|
||||||
globals:
|
globals:
|
||||||
# FS (filesystem)
|
# FS (filesystem)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
-- Lune v0.0.1
|
-- Lune v0.0.2
|
||||||
|
|
||||||
declare fs: {
|
declare fs: {
|
||||||
readFile: (path: string) -> string,
|
readFile: (path: string) -> string,
|
||||||
|
|
Loading…
Reference in a new issue