Skip to content

Commit

Permalink
v2.4.5 (#762)
Browse files Browse the repository at this point in the history
remove skip condition
  • Loading branch information
elalish authored Mar 5, 2024
1 parent e073141 commit 22d94d5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
submodules: recursive
- name: Build wheels
uses: pypa/[email protected].5
uses: pypa/[email protected]
- uses: actions/upload-artifact@v4
with:
name: python-${{ matrix.os }}
Expand All @@ -44,7 +44,6 @@ jobs:
name: Upload release to PyPI
needs: [build_wheels, make_sdist]
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
environment:
name: pypi
url: https://pypi.org/p/manifold3d
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ endif()

set(MANIFOLD_VERSION_MAJOR 2)
set(MANIFOLD_VERSION_MINOR 4)
set(MANIFOLD_VERSION_PATCH 4)
set(MANIFOLD_VERSION_PATCH 5)
set(MANIFOLD_VERSION "${MANIFOLD_VERSION_MAJOR}.${MANIFOLD_VERSION_MINOR}.${MANIFOLD_VERSION_PATCH}")
set_property(TARGET manifold PROPERTY VERSION "${MANIFOLD_VERSION}")
set_property(TARGET manifold PROPERTY SOVERSION 2)
Expand Down
2 changes: 1 addition & 1 deletion bindings/wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "manifold-3d",
"version": "2.4.4",
"version": "2.4.5",
"description": "Geometry library for topological robustness",
"main": "manifold.js",
"files": [
Expand Down
6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
}: pkgs.stdenv.mkDerivation {
inherit doCheck;
pname = "manifold-${parallel-backend}";
version = "2.4.4";
version = "2.4.5";
src = self;
nativeBuildInputs = (with pkgs; [
cmake
Expand Down Expand Up @@ -86,7 +86,7 @@
parallelBackends)) // {
manifold-js = pkgs.buildEmscriptenPackage {
name = "manifold-js";
version = "2.4.4";
version = "2.4.5";
src = self;
nativeBuildInputs = (with pkgs; [ cmake python39 ]);
buildInputs = [ pkgs.nodejs ];
Expand Down Expand Up @@ -120,7 +120,7 @@
# but how should we make it work with other python versions?
manifold3d = with pkgs.python3Packages; buildPythonPackage {
pname = "manifold3d";
version = "2.4.4";
version = "2.4.5";
src = self;
propagatedBuildInputs = [
numpy
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "manifold3d"
version = "2.4.4"
version = "2.4.5"
authors = [
{ name="Emmett Lalish", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion test-cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cd cmake-consumer
cat <<EOT >> CMakeLists.txt
cmake_minimum_required(VERSION 3.18)
project(testing LANGUAGES CXX)
find_package(manifold "2.4.4" REQUIRED)
find_package(manifold "2.4.5" REQUIRED)
add_executable(testing test.cpp)
target_link_libraries(testing PRIVATE manifold)
EOT
Expand Down

0 comments on commit 22d94d5

Please sign in to comment.