Skip to content

Commit

Permalink
Bump version: 1.2.3 → 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrbil committed Jul 29, 2019
1 parent ed04b2c commit ef9f308
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 36 deletions.
40 changes: 20 additions & 20 deletions keepasshttp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from .keepass_http import ( # noqa: F401
AES_256_CBC,
KeePassHTTP,
KeePassHTTPCredential,
KeePassHTTPException,
)


__VERSION__ = "1.2.3"


keepasshttp = KeePassHTTP()
get = keepasshttp.get
list = keepasshttp.list
create = keepasshttp.create
search = keepasshttp.search
update = keepasshttp.update
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from .keepass_http import ( # noqa: F401
AES_256_CBC,
KeePassHTTP,
KeePassHTTPCredential,
KeePassHTTPException,
)


__VERSION__ = "1.3.0"


keepasshttp = KeePassHTTP()
get = keepasshttp.get
list = keepasshttp.list
create = keepasshttp.create
search = keepasshttp.search
update = keepasshttp.update
30 changes: 14 additions & 16 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,26 +1,24 @@
[bumpversion]
current_version = 1.3.0
commit = True
tag = True
sign = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
{major}.{minor}.{patch}

[aliases]
test=pytest
test = pytest

[bdist_wheel]
universal = 1

[metadata]
license_file = LICENSE.txt


[bumpversion]
current_version = 1.2.3
commit = True
tag = True
sign = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
{major}.{minor}.{patch}

[bumpversion:file:keepasshttp/__init__.py]


[flake8]
exclude = .git,__pycache__,.venv
max-complexity = 5
Expand All @@ -40,7 +38,7 @@ source = ./keepasshttp
[coverage:report]
precision = 2
fail_under = 98
exclude_lines =
pragma: no cover
raise KeePassHTTPException
exclude_lines =
pragma: no cover
raise KeePassHTTPException

0 comments on commit ef9f308

Please sign in to comment.