Skip to content

Commit

Permalink
v3.0.1 (#1126)
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
elalish authored Dec 27, 2024
1 parent b7a0275 commit 98b8142
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ include(CMakeDependentOption)
# Define Manifold version
set(MANIFOLD_VERSION_MAJOR 3)
set(MANIFOLD_VERSION_MINOR 0)
set(MANIFOLD_VERSION_PATCH 0)
set(MANIFOLD_VERSION_PATCH 1)
set(
MANIFOLD_VERSION
"${MANIFOLD_VERSION_MAJOR}.${MANIFOLD_VERSION_MINOR}.${MANIFOLD_VERSION_PATCH}"
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": "3.0.0",
"version": "3.0.1",
"description": "Geometry library for topological robustness",
"main": "manifold.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
flake-utils.lib.eachDefaultSystem
(system:
let
manifold-version = "3.0.0";
manifold-version = "3.0.1";
pkgs = import nixpkgs {
inherit system;
overlays = [
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 = "3.0.0"
version = "3.0.1"
authors = [
{ name="Emmett Lalish", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion scripts/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 "3.0.0" REQUIRED)
find_package(manifold "3.0.1" REQUIRED)
add_executable(testing test.cpp)
target_link_libraries(testing PRIVATE manifold::manifold)
EOT
Expand Down

0 comments on commit 98b8142

Please sign in to comment.