Skip to content

Commit

Permalink
Bump the version number for the text format
Browse files Browse the repository at this point in the history
  • Loading branch information
slyubomirsky committed May 30, 2019
1 parent bed95f8 commit 91fa672
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/tvm/relay/grammar/Relay.g4
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

grammar Relay;

SEMVER: 'v0.0.1' ;
SEMVER: 'v0.0.1.1' ;

// Lexing
// comments
Expand Down
2 changes: 1 addition & 1 deletion python/tvm/relay/prelude.rly
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
v0.0.1
v0.0.1.1

def @id[a](%x: a) -> a {
%x
Expand Down
2 changes: 1 addition & 1 deletion tests/python/relay/test_ir_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
else:
raises_parse_error = lambda x: x

SEMVER = "v0.0.1"
SEMVER = "v0.0.1.1"

BINARY_OPS = {
"*": relay.multiply,
Expand Down

0 comments on commit 91fa672

Please sign in to comment.