Skip to content

Commit

Permalink
Merge branch 'release/v0.6.2'
Browse files Browse the repository at this point in the history
0.6.2 (2021-02-17)
------------------

Bugfix:

* drawing.get_cur_model: correction data_key (`issue#27`_)
  • Loading branch information
Zepmanbc committed Feb 17, 2021
2 parents a9d7daf + 68ee340 commit 8f592af
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
History
=======

0.6.2 (2021-02-17)
------------------

Bugfix:

* drawing.get_cur_model: correction data_key (`issue#27`_)

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

0.6.1 (2021-01-30)
------------------

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__ = "__version__ = '0.6.1'"
__version__ = "__version__ = '0.6.2'"

from creopyson.connection import Client
from creopyson.objects import jlpoint
Expand Down
2 changes: 1 addition & 1 deletion creopyson/drawing.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def get_cur_model(client, drawing=None):
data = {}
if drawing:
data["drawing"] = drawing
return client._creoson_post("drawing", "get_cur_model", data, "drawing")
return client._creoson_post("drawing", "get_cur_model", data, "file")


def get_cur_sheet(client, drawing=None):
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.6.1
current_version = 0.6.2
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 @@ -41,6 +41,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/Zepmanbc/creopyson',
version='0.6.1',
version='0.6.2',
zip_safe=False,
)

0 comments on commit 8f592af

Please sign in to comment.