Skip to content

Commit

Permalink
Bump to version 1.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
eddieantonio committed May 17, 2018
1 parent a106bc1 commit 91491b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion javac_parser/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .javac_parser import Java
from .javac_parser import Java as Java
2 changes: 1 addition & 1 deletion javac_parser/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-

__version__ = '0.2.4'
__version__ = '1.0.0'
2 changes: 1 addition & 1 deletion javac_parser/javac_parser.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Token = Tuple[str, str, Tuple[int, int], Tuple[int, int], str]
class Java:
def check_syntax(self, java_source: Union[str, bytes]) -> List[Diagnostic]: ...
def get_num_parse_errors(self, java_source: Union[str, bytes]) -> int: ...
def lex(self, java_source: Union[str, bytes]) -> List[Token]: ...
def lex(self, java_source: str) -> List[Token]: ...

0 comments on commit 91491b9

Please sign in to comment.