Skip to content

Commit

Permalink
bump version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NioGreek authored and NioGreek committed Jul 24, 2021
1 parent 4f2ba6d commit 7f35f69
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion clashgap/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
from ._gap import gap
from ._fill import fill

__version__ = '0.2.0'
__version__ = '1.0.0'
__all__ = ['Clash', 'gap', 'fill']
1 change: 0 additions & 1 deletion clashgap/_gap.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,3 @@ def gap(clash):
res.append(buff)

return res

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "clashgap"
version = "0.2.0"
version = "1.0.0"
description = "A per-charecter diff/compression algorithm in python"
license = "MIT"
authors = ["NioGreek <GreekNio@gmail.com>"]
Expand Down
1 change: 0 additions & 1 deletion tests/test_fill.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@

def test_fill():
assert cg.fill([["sp", "h"], "am"]) == ["spam", "ham"]

1 change: 0 additions & 1 deletion tests/test_gap.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ def test_collision():

def test_gap():
assert cg.gap(["spam", "ham"]) == [['sp', 'h'], 'am']

3 changes: 1 addition & 2 deletions tests/test_version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import clashgap as cg

def test_version():
assert cg.__version__ == '0.2.0'

assert cg.__version__ == '1.0.0'

0 comments on commit 7f35f69

Please sign in to comment.