Skip to content

Commit e073141

Browse files
authored
v2.4.4 (#761)
1 parent f54e535 commit e073141

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/build_wheels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: pypa/[email protected]
2424
- uses: actions/upload-artifact@v4
2525
with:
26-
name: python-${{ matrix.runs-on }}
26+
name: python-${{ matrix.os }}
2727
path: ./wheelhouse/*.whl
2828

2929
make_sdist:

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ endif()
128128

129129
set(MANIFOLD_VERSION_MAJOR 2)
130130
set(MANIFOLD_VERSION_MINOR 4)
131-
set(MANIFOLD_VERSION_PATCH 2)
131+
set(MANIFOLD_VERSION_PATCH 4)
132132
set(MANIFOLD_VERSION "${MANIFOLD_VERSION_MAJOR}.${MANIFOLD_VERSION_MINOR}.${MANIFOLD_VERSION_PATCH}")
133133
set_property(TARGET manifold PROPERTY VERSION "${MANIFOLD_VERSION}")
134134
set_property(TARGET manifold PROPERTY SOVERSION 2)

bindings/wasm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "manifold-3d",
3-
"version": "2.4.2",
3+
"version": "2.4.4",
44
"description": "Geometry library for topological robustness",
55
"main": "manifold.js",
66
"files": [

flake.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
}: pkgs.stdenv.mkDerivation {
3434
inherit doCheck;
3535
pname = "manifold-${parallel-backend}";
36-
version = "2.4.2";
36+
version = "2.4.4";
3737
src = self;
3838
nativeBuildInputs = (with pkgs; [
3939
cmake
@@ -86,7 +86,7 @@
8686
parallelBackends)) // {
8787
manifold-js = pkgs.buildEmscriptenPackage {
8888
name = "manifold-js";
89-
version = "2.4.2";
89+
version = "2.4.4";
9090
src = self;
9191
nativeBuildInputs = (with pkgs; [ cmake python39 ]);
9292
buildInputs = [ pkgs.nodejs ];
@@ -120,7 +120,7 @@
120120
# but how should we make it work with other python versions?
121121
manifold3d = with pkgs.python3Packages; buildPythonPackage {
122122
pname = "manifold3d";
123-
version = "2.4.2";
123+
version = "2.4.4";
124124
src = self;
125125
propagatedBuildInputs = [
126126
numpy

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "manifold3d"
3-
version = "2.4.2"
3+
version = "2.4.4"
44
authors = [
55
{ name="Emmett Lalish", email="[email protected]" },
66
]

test-cmake.sh

+1-1
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 "2.4.2" REQUIRED)
8+
find_package(manifold "2.4.4" REQUIRED)
99
add_executable(testing test.cpp)
1010
target_link_libraries(testing PRIVATE manifold)
1111
EOT

0 commit comments

Comments
 (0)