Skip to content

Commit 91491b9

Browse files
committed
Bump to version 1.0.0.
1 parent a106bc1 commit 91491b9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

javac_parser/__init__.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from .javac_parser import Java
1+
from .javac_parser import Java as Java

javac_parser/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env python3
22
# -*- coding: UTF-8 -*-
33

4-
__version__ = '0.2.4'
4+
__version__ = '1.0.0'

javac_parser/javac_parser.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Token = Tuple[str, str, Tuple[int, int], Tuple[int, int], str]
1313
class Java:
1414
def check_syntax(self, java_source: Union[str, bytes]) -> List[Diagnostic]: ...
1515
def get_num_parse_errors(self, java_source: Union[str, bytes]) -> int: ...
16-
def lex(self, java_source: Union[str, bytes]) -> List[Token]: ...
16+
def lex(self, java_source: str) -> List[Token]: ...

0 commit comments

Comments
 (0)