Skip to content

Commit b06702b

Browse files
committed
Merge branch 'main' into occ-nurbs
2 parents 121eabd + d78be71 commit b06702b

File tree

11 files changed

+30
-18
lines changed

11 files changed

+30
-18
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.9.2
2+
current_version = 1.9.3
33
message = Bump version to {new_version}
44
commit = True
55
tag = True

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
### Removed
2020

2121

22+
## [1.9.3] 2021-11-02
23+
24+
### Added
25+
26+
### Changed
27+
28+
* Changed default path for Rhino 7 legacy install cleanup to Rhino7.app in `compas_rhino.__init__.py`.
29+
* Changed z-coordinate of `compas.datastructures.Mesh.from_meshgrid` to `0.0` instead of `0`.
30+
31+
### Removed
32+
33+
2234
## [1.9.2] 2021-11-02
2335

2436
### Added

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def patched_m2r2_setup(app):
3838
copyright = "Block Research Group - ETH Zurich"
3939
author = "Tom Van Mele"
4040

41-
release = "1.9.2"
41+
release = "1.9.3"
4242
version = ".".join(release.split(".")[0:2])
4343

4444
master_doc = "index"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def read(*names, **kwargs):
2525

2626
setup(
2727
name='COMPAS',
28-
version='1.9.2',
28+
version='1.9.3',
2929
description='The COMPAS framework',
3030
long_description=long_description,
3131
long_description_content_type='text/markdown',

src/compas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
__license__ = 'MIT License'
9292
__email__ = '[email protected]'
9393

94-
__version__ = '1.9.2'
94+
__version__ = '1.9.3'
9595

9696
version = LooseVersion(compas.__version__)
9797
versionstring = version.vstring.split('-')[0]

src/compas/datastructures/mesh/mesh.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -642,10 +642,10 @@ def from_meshgrid(cls, dx, nx, dy=None, ny=None):
642642
V, U = meshgrid(linspace(0, dx, nx + 1), linspace(0, dy, ny + 1), indexing='ij')
643643

644644
quads = [[
645-
[U[i + 0][j + 0], V[i + 0][j + 0], 0],
646-
[U[i + 0][j + 1], V[i + 0][j + 1], 0],
647-
[U[i + 1][j + 1], V[i + 1][j + 1], 0],
648-
[U[i + 1][j + 0], V[i + 1][j + 0], 0]
645+
[U[i + 0][j + 0], V[i + 0][j + 0], 0.0],
646+
[U[i + 0][j + 1], V[i + 0][j + 1], 0.0],
647+
[U[i + 1][j + 1], V[i + 1][j + 1], 0.0],
648+
[U[i + 1][j + 0], V[i + 1][j + 0], 0.0]
649649
] for i, j in product(range(ny), range(nx))]
650650

651651
return cls.from_polygons(quads)

src/compas_blender/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def redraw():
5050
bpy.ops.wm.redraw_timer(type='DRAW_WIN_SWAP', iterations=1)
5151

5252

53-
__version__ = '1.9.2'
53+
__version__ = '1.9.3'
5454

5555

5656
def _check_blender_version(version):

src/compas_ghpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from .utilities import * # noqa: F401 F403
2323

2424

25-
__version__ = '1.9.2'
25+
__version__ = '1.9.3'
2626

2727

2828
def get_grasshopper_plugin_path(version):

src/compas_plotters/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
1919
"""
2020

21-
__version__ = '1.9.2'
21+
__version__ = '1.9.3'
2222

2323
from .core import * # noqa: F401 F403
2424
# from .artists import * # noqa: F401 F403

src/compas_rhino/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from .utilities import * # noqa: F401 F403
3030

3131

32-
__version__ = '1.9.2'
32+
__version__ = '1.9.3'
3333

3434

3535
PURGE_ON_DELETE = True
@@ -93,7 +93,7 @@ def _get_ironpython_lib_path_mac(version):
9393
lib_paths = {
9494
'5.0': ['/', 'Applications', 'Rhinoceros.app', 'Contents'],
9595
'6.0': ['/', 'Applications', 'Rhinoceros.app', 'Contents', 'Frameworks', 'RhCore.framework', 'Versions', 'A'],
96-
'7.0': ['/', 'Applications', 'Rhinoceros.app', 'Contents', 'Frameworks', 'RhCore.framework', 'Versions', 'A']
96+
'7.0': ['/', 'Applications', 'Rhino7.app', 'Contents', 'Frameworks', 'RhCore.framework', 'Versions', 'A']
9797
}
9898
return os.path.join(*lib_paths.get(version) + ['Resources', 'ManagedPlugIns', 'RhinoDLR_Python.rhp', 'Lib'])
9999

0 commit comments

Comments
 (0)