Skip to content

Commit 31afd71

Browse files
authored
v3.4.1 (elalish#1605)
1 parent 7255c27 commit 31afd71

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ include(CMakeDependentOption)
3030
# Define Manifold version
3131
set(MANIFOLD_VERSION_MAJOR 3)
3232
set(MANIFOLD_VERSION_MINOR 4)
33-
set(MANIFOLD_VERSION_PATCH 0)
33+
set(MANIFOLD_VERSION_PATCH 1)
3434
set(
3535
MANIFOLD_VERSION
3636
"${MANIFOLD_VERSION_MAJOR}.${MANIFOLD_VERSION_MINOR}.${MANIFOLD_VERSION_PATCH}"

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

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
flake-utils.lib.eachDefaultSystem
1515
(system:
1616
let
17-
manifold-version = "3.4.0";
17+
manifold-version = "3.4.1";
1818
pkgs = import nixpkgs {
1919
inherit system;
2020
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.4.0"
3+
version = "3.4.1"
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.4.0" REQUIRED)
8+
find_package(manifold "3.4.1" REQUIRED)
99
add_executable(testing test.cpp)
1010
target_link_libraries(testing PRIVATE manifold::manifold)
1111
EOT

scripts/test-pkgconfig.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cat <<EOT > testing.cpp
1313
#include <manifold/manifold.h>
1414
#include <manifold/version.h>
1515
16-
#if MANIFOLD_VERSION < MANIFOLD_VERSION_NUMBER(3, 4, 0)
16+
#if MANIFOLD_VERSION < MANIFOLD_VERSION_NUMBER(3, 4, 1)
1717
# error "Unexpected: minimum version number not available"
1818
#endif
1919

0 commit comments

Comments
 (0)