action-setup-zig/CHANGELOG.md

62 lines
1.8 KiB
Markdown
Raw Normal View History

2019-10-05 04:44:40 -06:00
# setup-zig change log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
2019-10-05 05:25:18 -06:00
2023-06-25 09:47:07 -06:00
## 2.1.0
* The action now caches compilers in your repository's Actions cache by default. This significantly
speeds up installs on average. [#53](https://github.com/goto-bus-stop/setup-zig/pull/53)
2.0.2 also had caching-related changes but they didn't actually do much, based on a misunderstanding
of what the `tool-cache` is for.
2023-05-18 06:32:14 -06:00
## 2.0.2
* Fix tool-cache usage, this should speed up the action if zig was already downloaded before. [#45](https://github.com/goto-bus-stop/setup-zig/pull/45)
2022-11-07 05:46:57 -07:00
## 2.0.1
* Update docs to v2
2022-11-07 05:37:05 -07:00
## 2.0.0
* Change `version` option default to `master`. See [#24](https://github.com/goto-bus-stop/setup-zig/issues/24)
2020-11-11 04:44:03 -07:00
## 1.3.0
* Support pinning to a specific commit of the zig compiler. ([@codehz](https://github.com/codehz) in [#14](https://github.com/goto-bus-stop/setup-zig/pull/14))
```yaml
uses: goto-bus-stop/setup-zig@v1
with:
version: 0.6.0+4b48fccad
```
* Add tests for the version -> URL resolution code.
2020-10-11 10:21:10 -06:00
## 1.2.5
* Update dependencies to fix #11.
2020-09-19 07:54:49 -06:00
## 1.2.4
* Update dependencies simple-get and ncc.
2020-03-07 08:11:43 -07:00
## 1.2.3
* Configure Actions to build releases automatically.
2020-02-17 07:18:38 -07:00
## 1.2.2
2020-11-11 04:44:03 -07:00
* Update examples. ([#7](https://github.com/goto-bus-stop/setup-zig/pull/7))
2020-02-17 07:18:38 -07:00
* Upgrade dependencies.
* Recommend using @v1 instead of pinning to a version.
2020-02-01 12:50:02 -07:00
## 1.2.1
* Make `version: master` actually work.
2020-01-23 02:56:47 -07:00
## 1.2.0
* Allow setting `version: master` to get the latest build from the development branch.
2019-10-09 04:33:13 -06:00
## 1.1.0
* Load the zig binaries from tool cache if available.
* Use the ziglang.org download index instead of downloading from Github Releases.
* Bundle the action JavaScript code, reducing repository size.
2019-10-05 07:34:31 -06:00
## 1.0.1
* Add an icon and colour.
2019-10-05 05:25:18 -06:00
## 1.0.0
* Initial release.