chore(version): v0.2.1
This commit is contained in:
parent
70bc60055f
commit
6d6ce82451
|
@ -181,7 +181,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "trinitry"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
dependencies = [
|
||||
"pest",
|
||||
"pest_derive",
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
[package]
|
||||
name = "trinitry"
|
||||
description = "A very simple programming language, used to map functions to commands"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
edition = "2021"
|
||||
license = "LGPL-3.0-or-later"
|
||||
repository = "https://git.nerdcult.net/trinitrix/trinitry"
|
||||
|
|
10
NEWS.md
10
NEWS.md
|
@ -24,6 +24,16 @@ If not, see <https://www.gnu.org/licenses/>.
|
|||
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
||||
|
||||
- - -
|
||||
## [v0.2.1](https://git.nerdcult.net/trinitrix/trinitry/compare/7dd5da97f60da774407969ff87e31fc6c79814f9..v0.2.1) - 2024-05-18
|
||||
#### Bug Fixes
|
||||
- **(src)** Rename `TrinitryInvokation` to just `Trinitry` for simplicity - ([d9ceb57](https://git.nerdcult.net/trinitrix/trinitry/commit/d9ceb571d20c031b2043e97fea84d686c53f48d1)) - [@soispha](https://git.nerdcult.net/soispha)
|
||||
#### Build system
|
||||
- **(Cargo.toml)** Use correct category slugs - ([70bc600](https://git.nerdcult.net/trinitrix/trinitry/commit/70bc60055f089b6bd02c094abd5212d8438c34b4)) - [@soispha](https://git.nerdcult.net/soispha)
|
||||
#### Documentation
|
||||
- **(src)** Improve rendering of quotation marks - ([7dd5da9](https://git.nerdcult.net/trinitrix/trinitry/commit/7dd5da97f60da774407969ff87e31fc6c79814f9)) - [@soispha](https://git.nerdcult.net/soispha)
|
||||
|
||||
- - -
|
||||
|
||||
## [v0.2.0](https://git.nerdcult.net/trinitrix/trinitry/compare/a088388e198940a8cf753d172d075dadf30ef545..v0.2.0) - 2024-05-18
|
||||
#### Documentation
|
||||
- **(src)** Improve the text regarding the allowed chars in an argument - ([a088388](https://git.nerdcult.net/trinitrix/trinitry/commit/a088388e198940a8cf753d172d075dadf30ef545)) - [@soispha](https://git.nerdcult.net/soispha)
|
||||
|
|
|
@ -25,7 +25,9 @@ If not, see <https://www.gnu.org/licenses/>.
|
|||
> A very simple programming language, used to map functions to commands
|
||||
|
||||
## Docs
|
||||
|
||||
If you want to generate the docs locally use this command, as they need KaTeX:
|
||||
|
||||
```sh
|
||||
# Generate documentation for the dependencies
|
||||
cargo doc
|
||||
|
|
Loading…
Reference in New Issue