| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-01-07 | Reduce use of deprecated IO types | Jay Petacat | |
| Related: #4917 | |||
| 2020-12-31 | Year++ | Frank Denis | |
| 2020-11-19 | Add builtin.Signedness, use it instead of is_signed | Tadeo Kondrak | |
| 2020-08-20 | add license header to all std lib files | Andrew Kelley | |
| add SPDX license identifier copyright ownership is zig contributors | |||
| 2020-07-11 | run zig fmt on std lib and self hosted | Vexu | |
| 2020-05-24 | run zig fmt on std lib | Andrew Kelley | |
| 2020-05-12 | std.json properly handle comptime int/float | Vexu | |
| 2020-04-23 | fix json.WriteStream.emitJson | xackus | |
| 2020-04-01 | std: introduce json.WriteStream.stringify | daurnimator | |
| 2020-04-01 | std: use json.StringifyOptions.Whitespace from json.WriteStream | daurnimator | |
| 2020-04-01 | std: use json.stringify logic in some json.WriteStream code paths | daurnimator | |
| 2020-03-30 | std lib API deprecations for the upcoming 0.6.0 release | Andrew Kelley | |
| See #3811 | |||
| 2020-03-10 | update standard library to new I/O streams API | Andrew Kelley | |
| 2020-03-10 | (breaking) rework stream abstractions | Andrew Kelley | |
| The main goal here is to make the function pointers comptime, so that we don't have to do the crazy stuff with async function frames. Since InStream, OutStream, and SeekableStream are already generic across error sets, it's not really worse to make them generic across the vtable as well. See #764 for the open issue acknowledging that using generics for these abstractions is a design flaw. See #130 for the efforts to make these abstractions non-generic. This commit also changes the OutStream API so that `write` returns number of bytes written, and `writeAll` is the one that loops until the whole buffer is written. | |||
| 2020-02-14 | std: use testing.allocator in tests | daurnimator | |
| 2019-12-10 | Replace @typeOf with @TypeOf in all zig source | Robin Voetter | |
| This change was mostly made with `zig fmt` and this also modified some whitespace. Note that in some files, `zig fmt` produced incorrect code, so the change was made manually. | |||
| 2019-12-08 | std.fmt.format: tuple parameter instead of var args | Andrew Kelley | |
| 2019-11-06 | std.json.Value: added dumpStream(), utilize WriteStream for dump() | Sebastian Keller | |
| 2019-10-27 | Added test for 'emitJson' | Sebastian Keller | |
| 2019-10-27 | Unified public api | Sebastian Keller | |
| 2019-10-24 | Shortened switch statement | Sebastian Keller | |
| 2019-10-24 | Added 'writeJson' to write_stream.zig: | Sebastian Keller | |
| Small addition to make writing a json value easier | |||
| 2019-10-11 | merge dumps tool: merging ast nodes | Andrew Kelley | |
| -fgenerate-docs is replaced ith -femit-docs -fno-emit-bin is added to prevent outputting binary | |||
| 2019-10-10 | miscellaneous improvements to generated docs | Andrew Kelley | |
| * introduce std.json.WriteStream API for writing json data to a stream * add WIP tools/merge_anal_dumps.zig for merging multiple semantic analysis dumps into one. See #3028 * add std.json.Array, improves generated docs * add test for `std.process.argsAlloc`, improves test coverage and generated docs | |||
