mirror of https://github.com/Hilbis/Hilbish
fix: merge patch releases with master (#248)
my absolutely terrible april fools release was made on a separate branch. this pr merges the fixes on master so history can be synced up. (and mainly to get the 2.1.2 blog post)cdr-tilde
parent
659d1e0c4e
commit
3dd834fcdf
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -10,6 +10,16 @@
|
||||||
### Fixed
|
### Fixed
|
||||||
- Replaced `sed` in-place editing with `grep` and `mv` for compatibility with BSD utils
|
- Replaced `sed` in-place editing with `grep` and `mv` for compatibility with BSD utils
|
||||||
|
|
||||||
|
## [2.1.2] - 2022-04-10
|
||||||
|
### Removed
|
||||||
|
- Bad april fools code ;(
|
||||||
|
|
||||||
|
## [2.1.1] - 2022-04-01
|
||||||
|
### Added
|
||||||
|
- Validation checks for command input
|
||||||
|
- Improved runtime performance
|
||||||
|
- Validate Lua code
|
||||||
|
|
||||||
## [2.1.0] - 2022-02-10
|
## [2.1.0] - 2022-02-10
|
||||||
### Added
|
### Added
|
||||||
- Documented custom userdata types (Job and Timer Objects)
|
- Documented custom userdata types (Job and Timer Objects)
|
||||||
|
|
1
vars.go
1
vars.go
|
@ -13,6 +13,7 @@ var (
|
||||||
var (
|
var (
|
||||||
ver = "v2.2.0"
|
ver = "v2.2.0"
|
||||||
releaseName = "Poppy"
|
releaseName = "Poppy"
|
||||||
|
|
||||||
gitCommit string
|
gitCommit string
|
||||||
gitBranch string
|
gitBranch string
|
||||||
)
|
)
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
title: "v2.1.2 Release"
|
||||||
|
date: 2023-04-10T12:27:41-04:00
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
> The release with full changelogs and prebuilt binaries can be
|
||||||
|
seen at the [v2.1.2](https://github.com/Rosettea/Hilbish/releases/tag/v2.1.2)
|
||||||
|
tag.
|
||||||
|
|
||||||
|
This release reverts the April Fool's code additions in v2.1.1. It is
|
||||||
|
functionally equal to v2.1.0. Nice!
|
||||||
|
|
||||||
|
A real release will come possibly in a few days or next week, so stay tuned for
|
||||||
|
the good and feature-filled release of v2.2!
|
Loading…
Reference in New Issue