Skip to content

Commit 1348242

Browse files
committed
Bump version: 0.2.1 → 1.0.0
1 parent a06ad71 commit 1348242

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "regexp-learner"
3-
version = '0.2.1'
3+
version = '1.0.0'
44
description = "Python3 module providing some algorithms to infer automata and regular expressions.\""
55
authors = [
66
"Marc-Olivier Buob <marc-olivier.buob@nokia-bell-labs.com>",

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.1
2+
current_version = 1.0.0
33
commit = True
44
tag = True
55

src/regexp_learner/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
__email__ = "marc-olivier.buob@nokia-bell-labs.com, maxime.raynal@nokia.com"
1212
__copyright__ = "Copyright (C) 2019, Nokia"
1313
__license__ = "BSD-3"
14-
__version__ = '0.2.1' # Use single quotes for bumpversion (see setup.cfg)
14+
__version__ = '1.0.0' # Use single quotes for bumpversion (see setup.cfg)
1515

1616
from .gold import *
1717
from .lstar import *

0 commit comments

Comments
 (0)