| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2024-07-17 | Update to newest version of zig | 1 | -1/+1 | ||
| 2024-05-30 | Update for latest zig | 1 | -1/+1 | ||
| 2024-05-16 | Use b.path instead of manually setting the fields | 1 | -3/+3 | ||
| 2024-05-16 | Updated `build.zig` to support Zig 0.13.0-dev.211+6a65561e3 | 1 | -3/+3 | ||
| 2024-01-05 | Update to latest master | 1 | -5/+5 | ||
| 2024-01-02 | Add autodoc website | 1 | -0/+8 | ||
| This adds a `zig build docs` step that builds the documentation website and writes it to zig-out/docs. It further includes a GitHub Workflow that publishes this website to GitHub Pages. The GitHub Workflow is divided into two jobs: - build: builds the documentation and uploads it - publish: downloads the documentation and publishes it These are separate jobs to minimize permissions available to the build job. This workflow runs on two events: - after every push to master - `workflow_dispatch`: this allows manually running the workflow from its *Actions* page if something went wrong --- **Important pre-merge steps:** If this PR is accepted, the following steps should be taken before merging the PR: 1. Go to **Settings** for the repository 2. Select **Pages** on the left under *Code and automation* 3. Under *Build and deployment* set **Source** to **GitHub Actions** 4. Merge the PR. If the steps are missed, the PR will merge just fine, but the docs job will fail immediately on merge. This can be remedied by following steps 1-3 above, and either adding a new commit on master, or manually firing the workflow from the Actions > API Reference page. | |||||
| 2023-08-03 | Update to latest zig (4d7dd1689)0.7.0 | 1 | -1/+1 | ||
| 2023-04-14 | Update to newest version of zig | 1 | -4/+6 | ||
| 2023-03-20 | Update build script to actually run the tests | 1 | -1/+1 | ||
| 2023-03-19 | Update to newest version of zig | 1 | -15/+20 | ||
| 2023-03-06 | build: use new addModule() API which now returns a Module | 1 | -2/+2 | ||
| 2023-03-01 | Mode addModule to the top | 1 | -2/+2 | ||
| 2023-02-26 | build: expose 'clap' module for dependeees (#92) | 1 | -0/+2 | ||
| Co-authored-by: Andrew Kelley <andrew@ziglang.org> | |||||
| 2023-02-05 | Update to latest version of zig | 1 | -12/+15 | ||
| 2022-12-09 | Update to newest version of zig | 1 | -2/+0 | ||
| 2022-11-15 | Don't iterate all configs in build script | 1 | -21/+8 | ||
| Instead, cicd will now have a job for every configuration | |||||
| 2022-08-25 | Fix zig-clap for new default compiler | 1 | -9/+15 | ||
| Also enable test suit for both stage 1 and stage 2, to ensure we don't break things for people who haven't switched yet. | |||||
| 2022-03-09 | Allow for clap to parse argument values into types | 1 | -1/+1 | ||
| This changes - `.flag`, `.option`, `.options` and `.positionals` are now just fields you access on the result of `parse` and `parseEx`. - `clap.ComptimeClap` has been removed. - `clap.StreamingClap` is now called `clap.streaming.Clap` - `parse` and `parseEx` now takes a `value_parsers` argument that provides the parsers to parse values. - Remove `helpEx`, `helpFull`, `usageEx` and `usageFull`. They now just expect `Id` to have methods for getting the description and value texts. | |||||
| 2021-10-11 | Fix regression in last commit | 1 | -1/+0 | ||
| The importing of builtin was already fixed, so the latest commit applied this fix again, which caused problems | |||||
| 2021-10-11 | zig master updates | 1 | -0/+1 | ||
| 2021-10-09 | Fix uses of builtin | 1 | -1/+0 | ||
| 2021-06-24 | Fix all new compiler errors from zig master | 1 | -0/+1 | ||
| 2021-06-24 | Fix all new compiler errors from zig master | 1 | -0/+1 | ||
| 2021-06-24 | Build buildscript with latest version of zig | 1 | -1/+1 | ||
| 2021-05-26 | Update to latest zig in preperation for 0.8.0 | 1 | -14/+4 | ||
| 2021-05-08 | Modernize codebase | 1 | -2/+2 | ||
| * Better naming for variables * Follow naming style of enums * Use `writer()` instead of `outStream()` * Change many initializers to be a one liner * Don't explicitly initialize fields to their default value | |||||
| 2021-01-10 | zig master updates | 1 | -1/+1 | ||
| 2020-11-29 | Don't format in build script | 1 | -8/+0 | ||
| We let CI catch unformatted code and let users run fmt in the best way for them | |||||
| 2020-11-10 | Deprecate ComptimeClap in favor of parseExv0.3.0 | 1 | -2/+1 | ||
| 2020-08-22 | add build step id | 1 | -1/+1 | ||
| 2020-08-15 | Fix expected type error on 32 bit systems | 1 | -0/+3 | ||
| fixes #23 | |||||
| 2020-04-18 | Run zig fmt on buildv0.2.0 | 1 | -0/+3 | ||
| 2020-04-11 | rebuild readme | 1 | -1/+1 | ||
| 2020-04-11 | update to latest zig | 1 | -1/+1 | ||
| 2020-03-05 | Add clap.usage | 1 | -0/+2 | ||
| 2020-03-01 | update for latest zig | 1 | -1/+1 | ||
| 2019-12-09 | update for latest zig (varargs is no more) | 1 | -3/+2 | ||
| 2019-12-01 | update for latest zig | 1 | -1/+1 | ||
| 2019-11-27 | Add clap.parse as the simplest way of using the lib | 1 | -3/+5 | ||
| 2019-10-06 | fmt, mv src/ clap/ and run fmt on build | 1 | -0/+5 | ||
| 2019-08-17 | make help message look more like other tools | 1 | -13/+13 | ||
| 2019-08-17 | adds parseParam | 1 | -0/+1 | ||
| a less verbose way of getting a Param(Help). | |||||
| 2019-06-21 | Embed examples in README during build | 1 | -0/+27 | ||
| fixes #11 | |||||
| 2019-06-12 | updated to newest version of zig | 1 | -4/+4 | ||
| 2018-11-15 | Changed Names.prefix to Names.both | 1 | -2/+2 | ||
| 2018-11-14 | Restructured and make StreamingClap simpler | 1 | -0/+48 | ||
| * Also added a ComptimeClap | |||||
| 2018-09-06 | Removed the extended api. Refactored tests | 1 | -42/+0 | ||
| 2018-06-19 | Updated to newest version of zig | 1 | -3/+2 | ||
| 2018-06-08 | Removed the settings param | 1 | -4/+1 | ||
| 2018-06-08 | Updated to newest pointer syntax | 1 | -1/+1 | ||