Skip to content

Commit 551e1a1

Browse files
elalishpca006132
andauthored
v3.1 (#1259)
* bump version * bindings: include string in manifold3d --------- Co-authored-by: pca006132 <john.lck40@gmail.com>
1 parent 2cf3dfd commit 551e1a1

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
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 0)
33-
set(MANIFOLD_VERSION_PATCH 1)
32+
set(MANIFOLD_VERSION_MINOR 1)
33+
set(MANIFOLD_VERSION_PATCH 0)
3434
set(
3535
MANIFOLD_VERSION
3636
"${MANIFOLD_VERSION_MAJOR}.${MANIFOLD_VERSION_MINOR}.${MANIFOLD_VERSION_PATCH}"

bindings/python/manifold3d.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
// limitations under the License.
1414

1515
#include <optional>
16+
#include <string>
1617

1718
#include "autogen_docstrings.inl" // generated in build folder
1819
#include "manifold/cross_section.h"

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.0.1",
3+
"version": "3.1.0",
44
"description": "Geometry library for topological robustness",
55
"main": "manifold.js",
66
"scripts": {

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.0.1";
32+
manifold-version = "3.1.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.0.1"
3+
version = "3.1.0"
44
authors = [
55
{ name="Emmett Lalish", email="elalish@gmail.com" },
66
]

scripts/test-cmake.sh

Lines changed: 1 addition & 1 deletion
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.0.1" REQUIRED)
8+
find_package(manifold "3.1.0" REQUIRED)
99
add_executable(testing test.cpp)
1010
target_link_libraries(testing PRIVATE manifold::manifold)
1111
EOT

0 commit comments

Comments
 (0)