Skip to content

Commit 3b589b9

Browse files
authored
v3.3.0 (#1419)
1 parent 84f9a8c commit 3b589b9

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ include(CMakeDependentOption)
2929

3030
# Define Manifold version
3131
set(MANIFOLD_VERSION_MAJOR 3)
32-
set(MANIFOLD_VERSION_MINOR 2)
33-
set(MANIFOLD_VERSION_PATCH 1)
32+
set(MANIFOLD_VERSION_MINOR 3)
33+
set(MANIFOLD_VERSION_PATCH 0)
3434
set(
3535
MANIFOLD_VERSION
3636
"${MANIFOLD_VERSION_MAJOR}.${MANIFOLD_VERSION_MINOR}.${MANIFOLD_VERSION_PATCH}"

bindings/wasm/lib/level-of-detail.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export const getMinCircularEdgeLength = () => minCircularEdgeLength;
113113
* @group Global Settings
114114
*/
115115
export const getCircularSegments = (radius: number) =>
116-
getManifoldModuleSync()?.getCircularSegments(radius);
116+
getManifoldModuleSync()?.getCircularSegments(radius)!;
117117

118118
export const cleanup = () => {
119119
resetToCircularDefaults();

bindings/wasm/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "manifold-3d",
3-
"version": "3.2.1",
3+
"version": "3.3.0",
44
"description": "Geometry library for topological robustness",
55
"main": "manifold.js",
66
"bin": {

bindings/wasm/types/manifoldCADGlobals.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* These objects and functions are specific to top-level scripts
1717
* running within manifoldCAD.
1818
*
19-
* They are only accessable as global objects by a top level script evaluated by
19+
* They are only accessible as global objects by a top level script evaluated by
2020
* the worker. Libraries will not have access to them.
2121
*
2222
* These functions will not be present at all when a model is imported as an ES

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
flake-utils.lib.eachDefaultSystem
3030
(system:
3131
let
32-
manifold-version = "3.2.1";
32+
manifold-version = "3.3.0";
3333
pkgs = import nixpkgs {
3434
inherit system;
3535
overlays = [

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "manifold3d"
3-
version = "3.2.1"
3+
version = "3.3.0"
44
authors = [
55
{ name="Emmett Lalish", email="elalish@gmail.com" },
66
]

scripts/test-cmake.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cd cmake-consumer
55
cat <<EOT > CMakeLists.txt
66
cmake_minimum_required(VERSION 3.18)
77
project(testing LANGUAGES CXX)
8-
find_package(manifold "3.2.1" REQUIRED)
8+
find_package(manifold "3.3.0" REQUIRED)
99
add_executable(testing test.cpp)
1010
target_link_libraries(testing PRIVATE manifold::manifold)
1111
EOT
@@ -14,7 +14,7 @@ cat <<EOT > test.cpp
1414
#include <manifold/manifold.h>
1515
#include <manifold/version.h>
1616
17-
#if MANIFOLD_VERSION < MANIFOLD_VERSION_NUMBER(3, 2, 1)
17+
#if MANIFOLD_VERSION < MANIFOLD_VERSION_NUMBER(3, 3, 0)
1818
# error "Unexpected: minimum version number not available"
1919
#endif
2020

0 commit comments

Comments
 (0)