Skip to content

Commit

Permalink
Release llamafile v0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jart committed May 10, 2024
1 parent ae34574 commit 30cdd9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion llama.cpp/grammar-parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ namespace grammar_parser {

out_elements.push_back({type, char_pair.first});
if (pos[0] == '-' && pos[1] != ']') {
if (pos[1]) { // [jart] don't sync until upstream fixes bug
if (!pos[1]) { // [jart] don't sync until upstream fixes bug
throw std::runtime_error("unexpected end of input");
}
auto endchar_pair = parse_char(pos + 1);
Expand Down
2 changes: 1 addition & 1 deletion llamafile/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#define LLAMAFILE_MAJOR 0
#define LLAMAFILE_MINOR 8
#define LLAMAFILE_PATCH 3
#define LLAMAFILE_PATCH 4
#define LLAMAFILE_VERSION \
(100000000 * LLAMAFILE_MAJOR + 1000000 * LLAMAFILE_MINOR + LLAMAFILE_PATCH)

Expand Down

0 comments on commit 30cdd9c

Please sign in to comment.