Version 0.0.2

This commit is contained in:
Filip Tibell 2023-01-19 15:08:38 -05:00
parent 3081a16df1
commit b0042726ce
No known key found for this signature in database
6 changed files with 7 additions and 7 deletions

View file

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

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

View file

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

View file

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

View file

@ -1,4 +1,4 @@
# Lune v0.0.1 # Lune v0.0.2
--- ---
globals: globals:
# FS (filesystem) # FS (filesystem)

View file

@ -1,4 +1,4 @@
-- Lune v0.0.1 -- Lune v0.0.2
declare fs: { declare fs: {
readFile: (path: string) -> string, readFile: (path: string) -> string,