Skip to content

Commit

Permalink
Merge branch 'release/v0.7.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepmanbc committed Feb 26, 2023
2 parents df2353b + ed8a133 commit b6ca2be
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
History
=======

0.7.6 (2023-02-26)
---------------------------------

* BugFix:
* Correction for `layer.delete` (`issue#68`_)

.. _`issue#68`: https://github.com/Zepmanbc/creopyson/issues/68

Documentation update (2023-02-16)
---------------------------------

Expand Down
2 changes: 1 addition & 1 deletion creopyson/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__author__ = """Benjamin C."""
__email__ = "zepman@gmail.com"
__version__ = "0.7.5"
__version__ = "0.7.6"

from creopyson.connection import Client
from creopyson.objects import jlpoint
Expand Down
2 changes: 1 addition & 1 deletion creopyson/layer.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def delete(client, name=None, file_=None):
None
"""
data = {"name": name}
data = {}
if file_ is not None:
data["file"] = file_
else:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.5
current_version = 0.7.6
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/Zepmanbc/creopyson",
version="0.7.5",
version="0.7.6",
zip_safe=False,
)

0 comments on commit b6ca2be

Please sign in to comment.