Skip to content

Commit 115cd01

Browse files
committed
Merge branch 'main' of https://github.com/compas-dev/compas into rhino_brep
2 parents b48b9f1 + 4993b32 commit 115cd01

File tree

11 files changed

+68
-15
lines changed

11 files changed

+68
-15
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.17.3
2+
current_version = 1.17.4
33
message = Bump version to {new_version}
44
commit = True
55
tag = True

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu-latest, macos-latest, windows-latest]
17-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
17+
python-version: ['3.7', '3.8', '3.9', '3.10']
1818

1919
steps:
2020
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
### Changed
1717

18+
### Removed
19+
20+
21+
## [1.17.4] 2022-12-06
22+
23+
### Added
24+
25+
* Added option for per-vertex color specification to `compas_rhino.utilities.drawing.draw_mesh`.
26+
27+
### Changed
28+
1829
* Fixed strange point values in RhinoNurbsCurve caused by conversion `ControlPoint` to COMPAS instead of `ControlPoint.Location`.
1930
* Fixed flipped order of NURBS point count values when creating RhinoNurbsSurface from parameters.
2031
* Changed serialization format and reconstruction procedure of `RhinoBrep`.
2132

2233
### Removed
2334

35+
* Removed Python 3.6 from build workflows as it reached end-of-life at the end of 2021.
36+
2437

2538
## [1.17.3] 2022-11-09
2639

docs/conf.py

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

45-
release = "1.17.3"
45+
release = "1.17.4"
4646
version = ".".join(release.split(".")[0:2])
4747

4848
master_doc = "index"

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313

1414

1515
def read(*names, **kwargs):
16-
return io.open(
17-
path.join(here, *names), encoding=kwargs.get("encoding", "utf8")
18-
).read()
16+
return io.open(path.join(here, *names), encoding=kwargs.get("encoding", "utf8")).read()
1917

2018

2119
long_description = read("README.md")
@@ -24,7 +22,7 @@ def read(*names, **kwargs):
2422

2523
setup(
2624
name="COMPAS",
27-
version="1.17.3",
25+
version="1.17.4",
2826
description="The COMPAS framework",
2927
long_description=long_description,
3028
long_description_content_type="text/markdown",
@@ -42,7 +40,6 @@ def read(*names, **kwargs):
4240
"Operating System :: Microsoft :: Windows",
4341
"Programming Language :: Python",
4442
"Programming Language :: Python :: 3",
45-
"Programming Language :: Python :: 3.6",
4643
"Programming Language :: Python :: 3.7",
4744
"Programming Language :: Python :: 3.8",
4845
"Programming Language :: Python :: 3.9",

src/compas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
__license__ = "MIT License"
5151
__email__ = "[email protected]"
5252

53-
__version__ = "1.17.3"
53+
__version__ = "1.17.4"
5454

5555
version = LooseVersion(compas.__version__)
5656
versionstring = version.vstring.split("-")[0]

src/compas_blender/__init__.py

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

5353

54-
__version__ = "1.17.3"
54+
__version__ = "1.17.4"
5555

5656

5757
def _check_blender_version(version):

src/compas_ghpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import compas
2121
import compas_rhino
2222

23-
__version__ = "1.17.3"
23+
__version__ = "1.17.4"
2424

2525
if compas.is_rhino():
2626
from .utilities import * # noqa: F401 F403

src/compas_plotters/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
1515
"""
1616

17-
__version__ = "1.17.3"
17+
__version__ = "1.17.4"
1818

1919
from .core import * # noqa: F401 F403
2020

src/compas_rhino/__init__.py

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

3131

32-
__version__ = "1.17.3"
32+
__version__ = "1.17.4"
3333

3434

3535
PURGE_ON_DELETE = True

0 commit comments

Comments
 (0)