Skip to content

Commit 876bd9c

Browse files
rename from ansi-term to ansi_term
1 parent 50c17b7 commit 876bd9c

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
1-
# ansi-term
1+
# ansi_term
22

3-
![CI](https://github.com/ziglibs/ansi-term/workflows/CI/badge.svg)
3+
![CI](https://github.com/ziglibs/ansi_term/workflows/CI/badge.svg)
44

55
Zig library for dealing with ANSI Terminals (escape codes, styles, etc.)
66

7+
> [!IMPORTANT]
8+
> This library was renamed from `ansi-term`, now using an underscore
9+
710
This was originally code which was extracted from
811
[lscolors](https://github.com/ziglibs/lscolors) for use in
912
other zig libraries. More features have been added since.
1013

11-
`ansi-term` is designed to work with Zig 0.13.0.
14+
`ansi_term` is designed to work with Zig 0.14.0.
1215

1316
## Documentation
1417

1518
Automatically generated documentation for the project
16-
can be found at https://ziglibs.github.io/ansi-term/.
19+
can be found at https://ziglibs.github.io/ansi_term/.
1720
Note that autodoc is currently in beta; the website may be broken or incomplete.

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pub fn build(b: *Build) void {
44
const target = b.standardTargetOptions(.{});
55
const optimize = b.standardOptimizeOption(.{});
66

7-
_ = b.addModule("ansi-term", .{
7+
_ = b.addModule("ansi_term", .{
88
.root_source_file = b.path("src/main.zig"),
99
});
1010

0 commit comments

Comments
 (0)