Skip to content

Commit

Permalink
Merge branch 'release/v0.7.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepmanbc committed Feb 3, 2024
2 parents b6ca2be + 23bf014 commit b9926ee
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.7 (2024-02-03)
---------------------------------

* BugFix:
* Correction for `drawing.set_view_loc` (`issue#84`_)

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

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

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.6"
__version__ = "0.7.7"

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 @@ -951,7 +951,7 @@ def set_view_loc(client, view, point, drawing=None):
data = {"view": view, "point": point}
if drawing is not None:
data["drawing"] = drawing
return client._creoson_post("drawing", "set_cur_model", data)
return client._creoson_post("drawing", "set_view_loc", data)


def view_bound_box(client, view, 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.7.6
current_version = 0.7.7
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.6",
version="0.7.7",
zip_safe=False,
)

0 comments on commit b9926ee

Please sign in to comment.